Thursday, October 22, 2009

PHP, Print all $_Post/$_Get Variables

To print all the (Post and Get) variables do...

print_r($_GET);
print_r($_POST);

No comments:

Post a Comment