Advertisement
Guest User

dump.php

a guest
May 16th, 2011
270
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.44 KB | None | 0 0
  1. <h1>Debug: </h1>
  2. <b>GET array:</b>
  3. <?php echo("<pre>".print_r($_GET,true)."</pre>"); ?>
  4.  
  5. <hr />
  6. <b>POST array: </b>
  7.  
  8. <?php echo("<pre>".print_r($_POST,true)."</pre>");?>
  9.  
  10. <hr />
  11. <b>FILES array: </b>
  12. <?php echo ("<pre>".print_r($_FILES,true)."</pre>"); ?>
  13. <hr />
  14.  
  15. <b>Headers: </b>
  16.  
  17. <?php
  18.         foreach($_SERVER as $h=>$v)
  19.                 if(ereg('HTTP_(.+)',$h,$hp))
  20.                         echo "<li>$h = $v</li>\n";
  21. ?>
  22. <hr />
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement