|
Wait ... urm okay let me explain. I have two files, one html and php file in the same folder. The html file is a order.html form and within this order.html form, there are variables. And in the processorder.php file, i wish to access the variables in the order.html file, for example $aaa.
But when i try to echo the value stored in $aaa in processorder.php file, it gives out an error. The error show below:
Your order is as follows:"; echo "
"; echo $HTTP_POST_VARS["tireqty"]." tires
"; echo $oilqty." bottles of oil
"; echo $sparkqty." spark plugs
"; ?>
Does anyone know how to solve this problem?
|