Re: [PHP] Re: how to redirect ?

2004-09-13 Thread Chris Shiflett
--- Paul Waring [EMAIL PROTECTED] wrote: I think you used header() after put out some data or php installed on server as CGI. Because send header possible only if php installed as apache module. Not so - I've used header('Location: http://www.xyz.com/'); with PHP as a CGI binary under

[PHP] Re: how to redirect ?

2004-09-11 Thread Alexander Kleshchevnikov
Hey! I think you used header() after put out some data or php installed on server as CGI. Because send header possible only if php installed as apache module. You can use custom function which use javascript for redirection. But it works if browser of client support javascript: function

[PHP] Re: how to redirect ?

2004-09-11 Thread Alexander Kleshchevnikov
Hey! I think you used header() after put out some data or php installed on server as CGI. Because send header possible only if php installed as apache module. You can use custom function which use javascript for redirection. But it works if browser of client support javascript: function

Re: [PHP] Re: how to redirect ?

2004-09-11 Thread Paul Waring
I think you used header() after put out some data or php installed on server as CGI. Because send header possible only if php installed as apache module. Not so - I've used header('Location: http://www.xyz.com/'); with PHP as a CGI binary under both Apache 1 and Apahce 2 without problems. Paul

[PHP] Re: how to redirect ?

2004-09-10 Thread Torsten Roehr
Cbharadwaj [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Hi I have used Header (Location:PATH) function for redirection. it is giving some errors. is there any other method other than HEADER() funtion for redirecting ? Bharadwaj It will work if you specify a *full* URI:

[PHP] Re: how to redirect with post method

2004-05-28 Thread Justin Patrin
Ral castro wrote: Hello, I have a webpage that I'm redirecting to other page with header command, for instance: header(location:information.php?cod1=$cod1cod2=$cod2...codn=$codn); I need send all vars (cod1, cod2, ..codn) on POST method, How Can I do this? thanks. If you really need to redirect