View Single Post
  #3 (permalink)  
Old 01-19-2005, 07:18 PM
steve0 steve0 is offline
WebProWorld Pro
 
Join Date: May 2004
Location: Austin, TX
Posts: 199
steve0 RepRank 0
Default

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
__________________
Hardcore Programming Solutions and Coffee Drinker
Reply With Quote