This may seems sorta dumb, but I'm not sure the exact syntax for this.
I need to extract the 2nd variable from a query.
I can do this to get all the variables,
foreach($HTTP_GET_VARS as $k => $v)
{
//Stuff
}
Howerver, seems pointless to go thru the entire thing for just the 2nd one.
Is there a way to simply get the value of the second variable. The query is formatted in a way where I dont know the name of the variable, thus I'm forced to use $HTTP_GET_VARS.
Thanks, in advance.