Sunday, July 13, 2014

View POST Values when submitted on PHP

You could use something as simple as this
print_r($_POST); 

This would make it a bit more viewable:

   echo str_replace('  ', '  ', nl2br(print_r($_POST, true)));