Almost straight from the tutorials:
<FORM name="vregform" ACTION="../regreply.php" method="post">
<table>
<tr>
<td>
<INPUT TYPE=TEXT NAME=”last_name”>
<INPUT TYPE=TEXT NAME=”first_name”>
<INPUT TYPE=SUBMIT VALUE=Submit>
<td>
<tr>
</table>
</FORM>
"regreply.php"
<html>
<body>
<?php echo $_POST["first_name"]; ?>Should be a name?<br />
Thanks for your registration information.
</body>
</html>
Simply reply page doesn't include the value of "first_name" submitted on the form??
I just started trying to learn PHP, shouldn't this work?
<FORM name="vregform" ACTION="../regreply.php" method="post">
<table>
<tr>
<td>
<INPUT TYPE=TEXT NAME=”last_name”>
<INPUT TYPE=TEXT NAME=”first_name”>
<INPUT TYPE=SUBMIT VALUE=Submit>
<td>
<tr>
</table>
</FORM>
"regreply.php"
<html>
<body>
<?php echo $_POST["first_name"]; ?>Should be a name?<br />
Thanks for your registration information.
</body>
</html>
Simply reply page doesn't include the value of "first_name" submitted on the form??
I just started trying to learn PHP, shouldn't this work?