|
Posted by Leam on 04/27/06 10:55
The following works fine with Opera,Firefox and other browsers
except Internet Explorer.
Our Internet Explorers have been patched to work with urls like:
<a href="http://login:password@domain.com/">sitename</a>
but fails to send the login:password via header("Location: $lk");
when using a link like this:
<a href="out.php?url=http://login:password@domain.com/">sitename</a>
Code for out.php
<?php
$lk = $_GET[url];
/* my tracking code which I excluded to keep this shorter */
header("Location: $lk");
?>
I have tried $lk = $_GET['url']; & $lk = $_GET["url"]; + spent
hrs googling for a solution - None found. PHP ver is 4.3.11 on
Apache server.
Any help/suggestions with this would be greatly appreciated!
Thanks,Leam
[Back to original message]
|