View Single Post
Old 07-08-2005   #5 (permalink)
cnotation
Registered User
 
Join Date: Jul 2005
Posts: 3

Quote:
Originally Posted by Order
sounds like you are losing that return value somewhere. try this on cart.php:

PHP Code:
print_r($_POST); 
That should print out the values of your request, num should be in there, if not, post the output from the print_r.
print_r($_POST);

gave me this..

Array ( [code] => 0222 [num] => )

Gosh this is annoying.. I cant even get past the second page. And the make matters worse... $_POST has failed me, what little confidence I had is shook.

I dont know why this works

foreach ($_POST as $field => $value)
{
echo "$field = $value<br>";
}
but the others dont
cnotation is offline