hi,

> This works properly on IE for Mac for redirecting users
> to download a file:
>
>Header("Refresh: 0;URL=http://www.mywebsite.com/junk.zip";);
>
>HOWEVER, it clears the web page which is very confusing
>to users. It's unsuitable for dynamic PHP sites.  <sigh>
>
>The only other way to go, I think, is to write my own
>custom version of PHP's Header() function.
>
>Any other thoughts?
>
>FB

uuuh ist this valid? I've never seen that before. I think it should
read:

<HTML>
<HEAD>
 <META HTTP-EQUIV="REFRESH" CONTENT="0; URL=http://www.mywebsite.com/junk.zip";>
</HEAD>

and doesn't belong into the HTTP header.

Kind Regards,
  Daniel Lorch



-- 
PHP Development 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]

Reply via email to