PHP: Only the first value of the array is being pulled?

  • Thread starter Thread starter nvc
  • Start date Start date
N

nvc

Guest
I have a script that calls array(A,B,C,D) where the values A through D can be anything. I prefer to have them inserted dynamically, not hardcoded, using the GET method.

The problem is that when I do call array($_GET[x]), it only pulls the first value for x. So, if the querystring is x=A,B,C,D, only A is being displayed. It's not displaying B,C, or D. I need all of these to display. Thanks.
 
Back
Top