This is a discussion on URL pushing in PHP within the PHP Language forums, part of the PHP Programming Forums category; Is there a PHP command that will allow be to push and URL and have a web page displayed to ...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
In article <FrWdna0mr-BHFeHcRVn-2g@comcast.com>,
"Mark Johnson" <mark_johnson@instantiations.com> wrote: > Is there a PHP command that will allow be to push and URL and have a web > page displayed to the user after the PHP script executes? > > Mark header("Location: http://www.example.com/"); /* Redirect browser */ Details are at: http://www.php.net/manual/en/function.header.php Just don't print anything before using header(). Derrald -- -- Derrald V |