--- Tim Haskins <[EMAIL PROTECTED]> wrote:
> I am crossing over from ASP to PHP and was
> wondering how to get the same affect as
> request.questring?

If your URL is:

http://example.org/foo.php?bar=hello

Then you can use $_SERVER['QUERY_STRING'] to get:

bar=hello

or you can use $_GET['bar'] to get:

hello

The $_GET[] array is probably more convenient, depending on
what you are doing, but you can get the raw query string if
you want as noted above.

Chris

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

Reply via email to