|
Ive got in my php.ini file:
error_reporting = E_ALL & ~E_NOTICE
display_errors = Off
At the moment it is just throwing up a blank page, no errors.
I added brackets to the REQUEST statement, and changed one of the CustomerID to CustomerID_FK, what it should have been. But still nothing....
So when i comment out the php code at the start and go echo $_REQUEST['ProductID']; and press the 'Add to Cart' button, the page refreshes showing the products as usual, but it displays nothing as its ProductID value.
echo "Request " . $_REQUEST['ProductID'];
echo "<br/>ProductID " . $ProductID;
Both show nothing, when I thought I was assigning them on the form.
|