I wrote a form to gather some info from a user:
I'm probably missing something simple >.<
Once "Submit" has been clicked, I wanted to output a simple page that just takes the inputted info and displays it on the page in the form of two separate sentences:<FORM ACTION="handle.php" METHOD=POST>
First Name <INPUT TYPE=TEXT NAME="FirstName" SIZE=20><BR>
Last Name <INPUT TYPE=TEXT NAME="LastName" SIZE=40><BR>
<INPUT TYPE=SUBMIT NAME="SUBMIT" VALUE="Submit!">
</FORM>
My dilemma is that the info typed in by the user on the first page does not get printed on the second page leaving me with blanks when the value of my variables are meant to be displayed.<?PHP
print "Your first name is
$FirstName.<BR>\n";
print "Your last name is
$LastName.<BR>\n";
?>
I'm probably missing something simple >.<