Ross wrote:

Can someone explain to me why this used to work but then stopped

header("Content-length: $size");
header("Content-type: $type");
header("Content-Disposition: attachment; filename=$name");

and this now works

header("Content-length: ".$size);
header("Content-type: ".$type);
header('Content-Disposition: attachment; filename="'.$name.'"');
echo $content;

Have you enabled output buffering within PHP/your script?

Cheers,

Rich
--
Zend Certified Engineer
http://www.corephp.co.uk

"Never trust a computer you can't throw out of a window"

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to