Hi, Im trying to execute this html code
<HTML>
<HEAD>
<TITLE>Request for more information</TITLE>
<BODY>
<CENTER>Would you like more information about our company?
<P>
<TABLE WIDTH = 400><TR><TD align = right>
<FORM ACTION="email.php3" METHOD="POST">
Your name:<BR>
<INPUT TYPE="text" NAME="name" SIZE="20" MAXLENGTH="30">
<P>
Your email address:<BR>
<INPUT TYPE="text" NAME="email" SIZE="20" MAXLENGTH="30">
<P>
I prefer:
<SELECT NAME="preference">
<OPTION value = Apples>Apples
<OPTION value = Oranges>Oranges
</SELECT>
<P>
<INPUT TYPE="submit" VALUE="Send it!">
</FORM>
</TD></TR></TABLE></CENTER>
</BODY>
</HTML>
and here is the php code that goes with it
<?
/ this script will handle the variables passed from the moreinfo.html file /
PRINT "<CENTER>";
PRINT "Hello, $name.";
PRINT "<BR><BR>";
PRINT "Thank you for your interest.<BR><BR>";
PRINT "We will send information to $email, and have noted that you like $preference.";
PRINT "</CENTER>";
?>
The problem I am having is that after I enter all the data and click on the submit button, the variables are not printed out. What could be the problem? Thanks.