Display all get variables using foreach loop

Using following code we can display all get variable passing from a page
<?php

foreach($_GET as $k=>$v)
echo $v;
?>


Same way we can also display all post varibles with their keys

<?php

foreach($_POST as $k=>$v)
echo $v;
?>