Monday, March 16, 2009

PHP: Echo all $_POST data

foreach($_POST as $var => $value)
{
echo $var . ' : ' . $value . "<br>";
}

No comments: