Posted by vincecarney on 04/27/06 21:41
php script:
<?php
echo "$name";
?>
html form:
<form action="handle_form.php" method="post">
<fieldset><legend>Enter your information in the form below:</legend>
<table width="100%" border="0">
<tr>
<td width="16%"><strong>Name:</strong></td>
If I use method="get" in the html form the data entered in the name
text box is not sent to the URL.
FYI - I already tried register globals = ON.
<td width="84%"><input type="text" name="name" /></td>
</tr>
</table>
</fieldset>
</form>
Navigation:
[Reply to this message]
|