Get All POST Variables

To iterate through all POST form variables, use the code below;

foreach ($_POST as $var => $value) {
echo “$var = $value”;
}

 

This entry was posted in Tech and tagged , . Bookmark the permalink.

Leave a Reply