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;
?>
Showing posts with label get. Show all posts
Showing posts with label get. Show all posts
Display all get variables using foreach loop
Subscribe to:
Posts (Atom)



