How to grab all variables in a post (PHP)? I don\'t want to deal with $_POST[\'var1\']; $_POST[\'var2\']; $_POST[\'var3\']; ... I want to echo all of them in on
$_POST[\'var1\']; $_POST[\'var2\']; $_POST[\'var3\']; ...
Use this function in a loop. extract ( $_GET );