Iam trying to learn PHP and one of the samples in the book was this script:
<html>
<head>
<title>Bob's Auto Parts - Order Results</title>
</head>
<body>
<h1>Order</h1>
<h2>Order Results</h2>
<?
echo "<p>Order processed at ";
echo date("H:i, jS F");
echo "<br>";
echo "<p>Your order is as follows:";
echo "<br>";
echo $tqty." # Of THings<br>";
echo $oqty." #of THings<br>";
echo $sqty." # of things<br>";
?>
</body>
</html>
That returns nothing but
Of THings
Of THings
Of THings
It doesnt get the number of things from the form.html. Both are coded correctly, i double checked plenty of times. I guess it is my php servers problem. Anyone know what the problem is?