RE: [PHP-DB] Simple Referrer

2003-08-27 Thread Jennifer Goodie
Hi. This seems like it should be simple. I've had no problem doing this in other languages, but can find no reference to this function in the PHP manual. How can I get PHP to return the referring URL? Depends on your PHP version and webserver install. In most cases $_SERVER['HTTP_REFERER']

Re: [PHP-DB] Simple Referrer

2003-08-27 Thread Matt Matijevich
$_SERVER[HTTP_REFERER] http://www.php.net/manual/en/reserved.variables.php#reserved.variables.server -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DB] Simple Referrer

2003-08-27 Thread Sebastian Haag
Diana, Diana Cassady said: Hi. This seems like it should be simple. I've had no problem doing this in other languages, but can find no reference to this function in the PHP manual. How can I get PHP to return the referring URL? Thanks. Diana [EMAIL PROTECTED] Will Work

Re: [PHP-DB] Simple Referrer

2003-08-27 Thread jeffrey_n_Dyke
$_SERVER['HTTP_REFERER'] hth jeff Diana Cassady