I have just installed and setup PHP 4.3 and Apache.
I created the following.
orderform.html has the following code
<form action="processorder.php" method=post>
<table border=0>
<tr bgcolor=#cccccc>
<td width=150>Item</td>
<td width=15>Quantity</td>
</tr>
<tr>
<td>Tires</td>
<td align="center">
<input type="text" name="tireqty"
size="3" maxlength="3">
</td>
</tr>
<tr>
<td colspan="2" align="center">
<input type="submit" value="Submit Order">
</td>
</tr>
</table>
</form>
------------------------------------------------------
processorder.php has the following code
<html>
<head>
<title>Bob's Auto Parts - Order Results</title>
</head>
<body>
<h1>Bob's Auto Parts</h1>
<h2>Order Results</h2>
</body>
</html>
PROBLEM: When i run orderform.html and click the submit button, NOTEPAD open showing the code in processorder.php!!! Do anybody know what wrong with my settings?
😕