List,
I current use something like this to send some one who clicks on my links to
the actual web page.
$row = @mysql_fetch_array($result);
$url = $row["url"];
$ID = $row["ID"];
header("Location: $url");
header("");
And then the hitcounter for that particular ID is incremented, thus the
reason for this whole script.
This works great. However, I would like the option to open up the target in
a new window like when you specify "target="somewindowname" in the <a
href... tag.
How can I accomplish the same thing with the header or ... sigh ... can I
not do this.
John
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]