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

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to