Make array of all GET-variables

Viewed 85313

I'm trying to make an array from all the GET-variables passed to a PHP script. So far I haven't found any way to do this.

Is this possible?

6 Answers

Get all GET params by :

$all_params = $_SERVER['QUERY_STRING']

Related