Last Updated: February 25, 2016
·
495
· tylermac

View all POST variables in PHP

This little snippet has really helped me while learning PHP and GET/POST requests. It prints a pre-formatted array of all POST variables.

echo "<pre>"; print_r($_POST) ;  echo "</pre>";