Here is a little snippet o' code I use to save time when I am posting between forms..
just to see what is getting sent and what is not..
Put this in the top of the pages under <body>
<?
echo "Values submitted from previous page:
";
reset ($HTTP_POST_VARS);
while (list ($key, $val) = each ($HTTP_POST_VARS))
{
echo "$key => $val\n
";
}
?>
Hope it helps..
Steve
|