The information inputed into the fields (form.html) are not being processed in my php scipt (HandleForm.php). Feel free to try it and have a good look at my code.
Below is my form.php
<html>
<head>
<TITLE>HTML Form</TITLE>
</head>
<body>
<FORM ACTION ="HandleForm.php" METHOD=POST>
First Name <INPUT TYPE=TEXT
NAME="FirstName" SIZE=20><br>
Last Name <INPUT TYPE=TEXT
NAME="LastName" SIZE=40><br>
E-mail Address <INPUT TYPE=TEXT
NAME="Email" SIZE=60><br>
Comments <TEXTAREA NAME="Comments"
ROWS=5 COLS=40></TEXTAREA><br>
<INPUT TYPE=SUBMIT NAME="SUBMIT"
VALUE="Submit!">
</form>
</body>
</html>
HandleForm.php
<html>
<head>
<title>Form Results</title>
<body>
<?php
/ This page receives and handles the data gernerated by "form.html". /
print "Your first name is $FirstName.<br>\n";
print "Your last name is $LastName.<br>\n";
print "Your E-mail address is $Email.<br>\n";
print "This is what you had to say:<br>\n $Comments<br>\n";
?>
</body>
</html>