Hi,

In my PHP script I want to open a new browser window and redirect it to a specific page!!!

I don't want to use javascript either..

Is there a simple command or a flag that can be set in the header function

header ('Location: http://www.example.com/');

Thanks,
Lucas

    PHP can't open a new browser window. You can only do this with a target reference in a link, or with javascript.

      Use the window.open from JS and inside the just opened file the header...

        Write a Reply...