VarjuOrg

Linux / Windows – what’s the difference…

Nifty snippet in PHP to get POST GET and SESSION variables

<?php
echo '<pre>';
print_r($_SESSION);
print_r($_POST);
print_r($_GET);
echo '</pre>'; 
?>

 

, ,

Leave a Reply

Your email address will not be published. Required fields are marked *