Show All Variables (and Values) that are in URL

As the title asks,

Is there a PHP function that can echo out all the variables (and the values) that are being stated in any url string to my site?

Cheers!
Ryan

The variables in the query string are found in the $_GET superglobal.
var_dump($_GET) shows you the content of $_GET.

You may need to check out $_SERVER too. :wink: