I would like to know how I can get all of > the values that were posted to my php page.
$array = Array();
if(is_array($HTTP_POST_VARS))
{
$array = $HTTP_POST_VARS;
}
else
{
$array = $HTTP_GET_VARS;
}
while(list($key,$value) = each($array))
{
echo "$key: $value";
}
--
Martin