Hi I am new to php.
I have created a form.html page
<html>
<head>
<title>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>
I have also created a results page called Handleform.php
<html>
<head>
<title>HandleForm.php</title>
</head>
<?php
print "your first name is $FirstName, <br>\n";
print "your last name is $LastName <br>\n";
print "your email address is $Email, <br>\n";
print "what you had to was:<br>\n
$Comments<br>\n";
?>
<body>
</body>
</html>
According to the book I should fill in the form and then it will return what I have typed in, but it does not. Strange thing though if I use the get command it will display it in the address bar. Please can someone help me.
Thanks in advance
I have created a form.html page
<html>
<head>
<title>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>
I have also created a results page called Handleform.php
<html>
<head>
<title>HandleForm.php</title>
</head>
<?php
print "your first name is $FirstName, <br>\n";
print "your last name is $LastName <br>\n";
print "your email address is $Email, <br>\n";
print "what you had to was:<br>\n
$Comments<br>\n";
?>
<body>
</body>
</html>
According to the book I should fill in the form and then it will return what I have typed in, but it does not. Strange thing though if I use the get command it will display it in the address bar. Please can someone help me.
Thanks in advance