VarjuOrg

Linux / Windows – what’s the difference…

POST

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>’; ?>  

, ,