Can anyone help with a problem I am having regarding redirection.
I'm using the following php call to redirect users to a site and
automatically enter the required login name and pass for the target
site:
header("Location: $link");
exit();
where $link is something like:
"http://name:pa**@web.address.com"
The function works perfectly when I use Firefox but fails when I use IE.
If I just paste the target website address into IE the link works so the
problem seems only to occur when I'm redirecting to an http address that
has the name and password embedded and I'm using IE.
Can anyone help solve the problem? (p.s. I dont't want to use
javascript)
Thanks in advance.