How do I grab all parameters from a URL and print it out in PHP?

php

Solution

I use

print_r($_GET);

Problem

How do I print out all the parameters and their value from a URL without using e.g. `print $_GET['paramater-goes-here'];` multiple times?

Original source