can anyone see why this is not submitting the value passed
File 1 test.htm
<html>
<head><title>COCOMO Model</title></head>
<body bgcolor=cornsilk>
<center>
<form action=testprocess.php method=post>
<table align=center>
<tr>
<td>Input1</td>
<td><input type=text name=input1> </td>
</tr>
<tr>
<td colspan=2><input type=submit name=submit></td>
</tr>
</table>
</form>
</center>
</body>
</html>
File 2 - testprocess.php
<html>
<head><title>COCOMO Model</title></head>
<body bgcolor=cornsilk>
<center>
<h2>You have input... </h2>
<?php
echo $_POST["input1"];
?>
</center>
</body>
</html>
Please!!!!
Does this look fine to everyone else lookin at it? Could there be a problem with the server config?