I think that I had a similar problem recently while trying to return a Flash
file. Here's how I did it:

$fd = fopen ($filename, "rb");
$contents = fread ($fd, filesize ($filename));
header("Content-type: application/x-shockwave-flash");
echo $contents;
fclose ($fd);


-- 
PHP Windows 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