Hi all, If i wanted to make the following header load into a blank html page what would i need to do inorder for this to work?
header("Location: ".$banner["url"]);
Cheers, maccam
You can't do that thru the HTTP protocol. You'll need to do it in HTML:
<a href="script.php" target="_blank">
Diego