<html>
<head>
<title>Tom's Auto Parts-Order Results</title>
</head>
<body>
<h1>Bob's Auto Parts</h1>
<h2>
Order Results
<?php
echo "<p>Order processorder at".date('H:i,jS F Y')."</p>";
$tireqty=$_POST['$tireqty'];
$oilqty=$_POST['$oilqty'];
$sparkqty=$_POST['$sparkqty'];
$totalqty=0;
$totalqty=$tireqty+$oilqty+$sparkqty;
echo "Item ordered:".$totalqty."<br/>";
$totalamount=0.00;
define('TIREPRICE',100);
define('OILPRICE',10);
define('SPARKPRICE',4);
$totalamount=$tireqty*TIREPRICE
+$oilqty*OILPRICE
+$sparkqty*SPARKPRICE;
echo "Sutotal:$".number_format($totalamount,2)."<br/>";
$taxrate=0.10;
$totalamount=$totalamount*(1+$taxrate);
echo "Total including tax:".number_format($totalamount,2)."<br/>";
?>
</h2>
</body>
</html>
<head>
<title>Tom's Auto Parts-Order Results</title>
</head>
<body>
<h1>Bob's Auto Parts</h1>
<h2>
Order Results
<?php
echo "<p>Order processorder at".date('H:i,jS F Y')."</p>";
$tireqty=$_POST['$tireqty'];
$oilqty=$_POST['$oilqty'];
$sparkqty=$_POST['$sparkqty'];
$totalqty=0;
$totalqty=$tireqty+$oilqty+$sparkqty;
echo "Item ordered:".$totalqty."<br/>";
$totalamount=0.00;
define('TIREPRICE',100);
define('OILPRICE',10);
define('SPARKPRICE',4);
$totalamount=$tireqty*TIREPRICE
+$oilqty*OILPRICE
+$sparkqty*SPARKPRICE;
echo "Sutotal:$".number_format($totalamount,2)."<br/>";
$taxrate=0.10;
$totalamount=$totalamount*(1+$taxrate);
echo "Total including tax:".number_format($totalamount,2)."<br/>";
?>
</h2>
</body>
</html>