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;
?>
Display all get variables using foreach loop
Subscribe to:
Post Comments (Atom)
1 comments:
Subscribe for php informer feed
http://feeds.feedburner.com/PhpInformer
Post a Comment