I am using this piece of code to gather data:
| Item | Quantity |
| Tires | |
| Oil | |
| Spark Plugs | |
When the php code executes I don’t get any variables outputted:
Vermont Camera Order ResultsVermont Camera
Order Results
<?
echo "
Order processed at "; echo date(" H:i, jS F"); echo "
"; echo "Your order is as follows:
"; echo "";
echo $tireqty." tires
";
echo $oilqty." bottles of oil
";
echo $sparkqty." spark plugs
";
echo $address." Address
";
?>