URL pushing in PHP

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Mark Johnson

    URL pushing in PHP

    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


  • Derrald

    #2
    Re: URL pushing in PHP

    In article <FrWdna0mr-BHFeHcRVn-2g@comcast.com> ,
    "Mark Johnson" <mark_johnson@i nstantiations.c om> wrote:
    [color=blue]
    > 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[/color]


    header("Locatio n: http://www.example.com/"); /* Redirect browser */

    Details are at:


    Just don't print anything before using header().

    Derrald
    --
    --
    Derrald V

    Comment

    Working...