Re: [PHP] redirecting the browser

2001-10-24 Thread Kodrik
I got some thread mixed up. Ignore that answer. > No, he wants to launch a script after Javascript has processed. > PHP is run on the server, Javascript on the client so Javascript has to run > after PHp is finished. > For him to launch a Javascript code, he can only do it by contacting the > ser

Re: [PHP] redirecting the browser

2001-10-24 Thread Kodrik
Header("Location: anypage.php"); > exit(); //stopping the script > ?> No, he wants to launch a script after Javascript has processed. PHP is run on the server, Javascript on the client so Javascript has to run after PHp is finished. For him to launch a Javascript code, he can only do it by con

Re: [PHP] redirecting the browser

2001-10-23 Thread Valentin V. Petruchek
Use this: - Original Message - From: "Ozgur Demirtas" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, October 24, 2001 9:47 AM Subject: [PHP] redirecting the browser > Hi all, > > I have a PHP script and at one point of the script I am tryin

Re: [PHP] redirecting the browser

2001-10-23 Thread Mak
Hi, you can use Javascript as follows: document.location.href='somepage.php';"); //continue yr code... ?> Hope it helps. - Mak - Original Message - From: "Ozgur Demirtas" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, October 24,

[PHP] redirecting the browser

2001-10-23 Thread Ozgur Demirtas
Hi all, I have a PHP script and at one point of the script I am trying to redirect my browser to a certaion page. I can't seem to find an easy way of doing this. header() call is so much of a problem. There is no such function like redirect("...") as in ASP? PS: I am using PHP version 3.09 as an