Posted by Rasmus Lerdorf on 07/26/05 02:47
maddog1169 wrote:
> The one that does not get accepted is
>
> <Group>
>
> including the "<>"
You have something like this?
<input type=text name="<Group>" />
It should work. Make sure you have quotes around it, of course, or
weird stuff will happen.
Try something like this:
<form action="f.php" method="POST">
<input type=text name="<Group>" />
</form>
<?php phpinfo() ?>
Type something in the form field and hit return and then scroll down and
look at the $_REQUEST and $_POST variables.
-Rasmus
Navigation:
[Reply to this message]
|