Order processed at 16:33, 14th March 2025
echo 'Your Order is as follows:
'; echo htmlspecialchars($tireqty).' tiresItems ordered:".$totalqty. "
";
$totalamount = 0.00;
define('TIREPRICE', 100);
define('OILPRICE', 10);
define('SPARKPRICE', 4);
$totalamount = $tireqty * TIREPRICE
+ $oilqty * OILPRICE
+ $sparkqty * SPARKPRICE;
echo "Subtotal: $".number_format($totalamount,2)."
";
$taxrate = 0.10; // local sales tax is 10%
$totalamount = $totalamount * (1 + $taxrate);
echo "Total including tax: $".number_formaat($totalamount,2)."
';
echo 'You did not order anything on the previous page!
';
echo '