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
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";