In my phpinfo() (Win2000, Apache2, PHP 4.3.4) my REQUEST_URI only gives
everything after the host.  If you wanted the host information along with
that, you have to get that in the seperate index: HTTP_HOST.

-- Rob

And, in general, if you want to browse around and see what kind of data you have available, this is a good way to check:


echo '<pre>';
print_r($_SERVER);
echo '</pre>';

-Dan

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



Reply via email to