Hi,
I think there is a global php variable that contains an array, in which all the query variables of the current url are stored.
i.e, you are on a page, the url is : "www.domain.com/page.php?var1=foo1&var2=foo2", and you want this global variable to return such an array :
$???[0][0]>>var1
$???[0][1]>>foo1
$???[1][0]>>var2
$???[1][1]>>foo2
Now that this must be clear (I hope at least..), my question is : What's the name of this global variable ?
Thank you.