Cool. I'll give that a try.
I found a workaround for it between the time I posted the original question and now, but I'd like for the redirects to work (which the workaround does not fix).
Thanks,
--Desmond
Joe Webster wrote:
Well if you knew the URL of the page you want to redirect to:
$url = "http://www.foo.com";
header("Location: $url");
echo "please wait while you are redirected to <a href=\"$url\">$url</a>" //Sometimes netscape get's upset if there isn't any page data.
You can also use:
$url = "http://www.foo.com";
header("Refresh: 0; url=$url");
echo "please wait while you are redirected to <a href=\"$url\">$url</a>" //Sometimes netscape get's upset if there isn't any page data.