Re: [PHP] Interesting Referer behaviour- how to copy it?

2005-08-04 Thread Jochem Maas
Dotan Cohen wrote: On 8/5/05, Jochem Maas <[EMAIL PROTECTED]> wrote: he runs php5, you run php4 - is the following set on his server perchance?: echo $_SERVER['HTTP_REFERER']; //or echo getenv("HTTP_REFERER"); note that $HTTP_REFERER is depreciated in php5. also the freeBSD box may have a fir

Re: [PHP] Interesting Referer behaviour- how to copy it?

2005-08-04 Thread Dotan Cohen
On 8/5/05, Jochem Maas <[EMAIL PROTECTED]> wrote: > he runs php5, you run php4 - is the following set on his server perchance?: > > echo $_SERVER['HTTP_REFERER']; > //or > echo getenv("HTTP_REFERER"); > > note that $HTTP_REFERER is depreciated in php5. > also the freeBSD box may have a firewall t

Re: [PHP] Interesting Referer behaviour- how to copy it?

2005-08-04 Thread Jochem Maas
Dotan Cohen wrote: I creating a out.php file that will record clicks, and the redirect the user to the site that he wanted. I am currently using header("Location: $url"); which works as expected. The only problem is, that the browser does not send $HTTP_REFERER info to the recieving site. Howeve

[PHP] Interesting Referer behaviour- how to copy it?

2005-08-04 Thread Dotan Cohen
I creating a out.php file that will record clicks, and the redirect the user to the site that he wanted. I am currently using header("Location: $url"); which works as expected. The only problem is, that the browser does not send $HTTP_REFERER info to the recieving site. However, that particular si