Peter Stöcker wrote:

>Hi!
>
>The register_globals are "on".
>
>But using $_POST will cause some problems, because I also use generated
>links like "test.php?id=4&usr=test" without using a form!
>
>So I don't get the variables by both these genrated links and forms.
>
The url you give above as an example is a GET not POST so you would 
access them as $_GET['var'], regardless of whether it was generated from 
a submitted form or a url link.

HTH
Chris


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

Reply via email to