Skip to content

Instantly share code, notes, and snippets.

@yudaprawira
Created September 13, 2016 10:08
Show Gist options
  • Save yudaprawira/1abe3df36c0efcc8b9dec3e821a0c983 to your computer and use it in GitHub Desktop.
Save yudaprawira/1abe3df36c0efcc8b9dec3e821a0c983 to your computer and use it in GitHub Desktop.
Show PHP $_POST and $_FILES
<?php
echo '<h1>POST DATA</h1>';
echo '<pre>';
print_r($_POST);
echo '</pre>';
echo '<h1>FILE DATA</h1>';
echo '<pre>';
print_r($_FILES);
echo '</pre>';
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment