I have a PHP page and I want to redirect it first to a page (eg google.com) then to another page (eg bing.com).
To do this I\'m using the following:
head
Well, maybe you would like to open 2 page at the same time. You can control it by javascript.
Something like following code:
var open_link_google = window.open('','_parent');
open_link_google.location="http://www.google.com";
var open_link_yahoo = window.open('','_blank');
open_link_yahoo.location="http://www.yahoo.com";