Hi I have been trying to post a form to a php page.
The original one with mysql did not work so I created a simple one with just php. It is not working either. I have been messing with it for hours. I checked all the documents I have nothing seems to be wrong...
Any help willl be appreciated.
Here are the two pages:
test3.php
<html>
<head>
<title>-----ADD----- </title>
</head>
<body>
<form action="test4.php" method="POST">
<p><b>Enter new info:</b><br />
<p><b>Enter Ndd:</b>
<input type="text" name="ndd" size="10"><br /><br />
<p><b>Enter ssd:</b>
<input type="text" name="ssd" size="10"><br /><br />
<p><input type="submit" value="submit" ></a></p>
</form>
</body>
</html>
And test4.php
<html>
<head>
<title> -----ADD----- </title>
</head>
<body>
<?php
print $ndd;
echo"Your ndd is <b>$ndd</b><br>";
echo $ndd;
echo '<br>';
echo 'test';
echo '<br>';
print $ssd;
?>
<p><a href="test3.php">Go to test3 again</a></p>
</body>
</html>
What is wrong with these ?????????