I thought $_SERVER['QUERY_STRING']) worked but it only gives the first variable.
For example, in
file.php?one=1&two=2&three=3
$_SERVER['QUERY_STRING']) only gives
one=1
-
Is there a way in PHP to do this? An alternate solution in Javascript would be of use too.
Thanks! 🙂