thanks for you help
Here is the code for the form.html:
<html>
<head>
<title>HTML From</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 <br><textarea name="Comments" rows=5 cols=40></textarea><br>
<Input type=submit name="Submit" value="Submit!"
</form>
</body>
</html>
Here is the code for the handleform.php:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
<meta http-equiv="content-type" content="text/html; charset-iso-8859-1" />
</head>
<body>
<?php
/*This page receives and handles the data
generated 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 waht you had to say:<br.\n
$Comments<br>
?>
</body>
</html>