Hey guys, I am trying to make a little shopping cart web app for a course and I am having a bit of a problem. It only started happening when I added lots of html/css, but the php code is the same.
I have a form:
[php]
echo ‘’;
echo ’ Quantity: 
’;
echo ‘<input type=“hidden” name=“hiddenSKU value=”’.$rec[‘SKU’].’">’;
echo ‘
’;
[/php]
Where a user will submit a quantity and add it to the cart.
The product_handler.php is:
[php]
(the $result is all one line in the source, changed it here for better formatting)
My ‘cart’ table is not updating in the way that I thought it would, am I missing something obvious? Thanks for your help.