I have a bunch of methods of sorting date=desc,etc,etc and they are posted via a $_GET
I want to take all the $_GET
variables ($_GET['anythingatall']
) and transform them from $_GET['variable]=blah
to &variable=blah
Is there a simple way to do this?
You are interested in $_SERVER['QUERY_STRING']
, I think. This will contain everything passed in $_GET
but in the format you desire.
This might work for you
$string = http_build_query($_GET, null, '&')
Alex's solution should work too, and admittedly cleaner. If you wanted to create a query string from any other array using http_build_query should work fine.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With