Skip to content

Instantly share code, notes, and snippets.

@edwardteach42
Created June 11, 2012 17:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save edwardteach42/2911422 to your computer and use it in GitHub Desktop.
Save edwardteach42/2911422 to your computer and use it in GitHub Desktop.
List all $_POST's as Variables in PHP
foreach ( $_POST as $key => $value ){
echo '$' . $key . ' = $_POST[\'' . $key . '\'];<br />';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment