RE: [PHP] Problem with the HTTP_REFERER

2001-04-27 Thread Simon Ould
Sent: Friday, April 27, 2001 11:12 > To: 'Rosen'; [EMAIL PROTECTED] > Subject: RE: [PHP] Problem with the HTTP_REFERER ...snip... -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To cont

Re: [PHP] Problem with the HTTP_REFERER

2001-04-27 Thread Rosen
TTP_REFERER=".$HTTP_REFERER; file://pass HTTP_REFERER > in the URL > echo " language=\"javascript\">window.location.href=\"<A HREF="http://$web\"">http://$web\"</A>;"; > ?> > > > > > > > Hope that help

Re: [PHP] Problem with the HTTP_REFERER

2001-04-27 Thread Geir Eivind Mork
On Thursday 26 April 2001 13:33, Rosen wrote: > main.php: > Click here You need a good deal of beating if you do your markup like that. there are something called a standard and that standard would make that line look like this: http://www.moijk.net/ | amusing? 3. Does it know its p

RE: [PHP] Problem with the HTTP_REFERER

2001-04-27 Thread Simon Ould
st.php] test.php window.location.href=\"http://$web\";"; ?> Hope that helped, Simon. > -Original Message- > From: Rosen [mailto:[EMAIL PROTECTED]] > Sent: Friday, April 27, 2001 07:56 > To: [EMAIL PROTECTED] > Subject: Re: [PHP] Problem with the H

Re: [PHP] Problem with the HTTP_REFERER

2001-04-26 Thread Rosen
Is anybody knows how can I redirect to another page and the REFERER to another page to be my page ? Thanks, Rosen Marinov ""Rosen"" <[EMAIL PROTECTED]> wrote in message 9c912a$had$[EMAIL PROTECTED]">news:9c912a$had$[EMAIL PROTECTED]... > Hi, > I have BIG problem using "HTTP_REFERER". > I have t

RE: [PHP] Problem with the HTTP_REFERER

2001-04-26 Thread PHPBeginner.com
: PHPBeginner.com [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 26, 2001 11:13 PM To: Rosen; [EMAIL PROTECTED] Subject: RE: [PHP] Problem with the HTTP_REFERER $HTTP_REFERER does not work with javascript this way. the value is as it would be inside your "back button", in other words, you have to

Re: [PHP] Problem with the HTTP_REFERER

2001-04-26 Thread Yasuo Ohgaki
It's a Browser and JavaScript issue. You would like to make your site as REFERER site with following line, right? echo "window.location.href=\"http://$web\";"; As I write previous post, it's all up to browser if it is going to send REFERER or not and it is nothing to do

RE: [PHP] Problem with the HTTP_REFERER

2001-04-26 Thread PHPBeginner.com
EMAIL PROTECTED] www.phpbeginner.com -Original Message- From: Rosen [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 26, 2001 8:33 PM To: [EMAIL PROTECTED] Subject: [PHP] Problem with the HTTP_REFERER Hi, I have BIG problem using "HTTP_REFERER". I have two pages: main.

Re: [PHP] Problem with the HTTP_REFERER

2001-04-26 Thread Rosen
The problem is thath: I don't want to reflect to "REFERRER" on the client's site. I want the REFERER on the client site to be my site ! Tnahks Rosen marinov ""Yasuo Ohgaki"" <[EMAIL PROTECTED]> wrote in message 9c974s$o3n$[EMAIL PROTECTED]">news:9c974s$o3n$[EMAIL PROTECTED]... > You cannot rely

Re: [PHP] Problem with the HTTP_REFERER

2001-04-26 Thread Yasuo Ohgaki
You cannot rely on HTTP_REFERER, it all upto client. So I suggest to change code to handle, empty or bogus HTTP_REFERER value. Regards, -- Yasuo Ohgaki ""Rosen"" <[EMAIL PROTECTED]> wrote in message 9c912a$had$[EMAIL PROTECTED]">news:9c912a$had$[EMAIL PROTECTED]... > Hi, > I have BIG problem usi

[PHP] Problem with the HTTP_REFERER

2001-04-26 Thread Rosen
Hi, I have BIG problem using "HTTP_REFERER". I have two pages: main.php: Click here test.php: .somecode echo "window.location.href=\"http://$web\";;"; $web - some website. But on the $web site (some site) I can't get the REFERER !!! -- PHP General Ma