|
Posted by Matt Darby on 07/30/05 17:45
Dotan Cohen wrote:
>Hi list,
>I need to redirerect a page, and send the referer information along
>with the redirect. I have tried:
>header("Location: $url");
>and
>print"<html><head><meta http-equiv='refresh' content='0; URL=$url'
>/></head></html>";
>
>Both of them redirect as expected, but the browser (Firefox and Opera)
>do not send referer information along with the request. As this is for
>link affiliates, I need that referer info sent with the request. How
>to do that? Thanks.
>
>Dotan Cohen
>Song Lirics http://song-lirics.com/sl/artists.php/b Song Lirics
>
>
>
URL parameters.
$url="www.somesite.org?id=asdf&referrer=2345";
header("Location: $url");
Navigation:
[Reply to this message]
|