Posted by Jerry Stuckle on 04/27/06 22:43
vincecarney@gmail.com wrote:
> 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>
>
Check your html for errors - something may be causing the form to be not
processed properly. A validator is available at http://validator.w3.org/.
--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex@attglobal.net
==================
[Back to original message]
|