Why use fpassthru? I just use readfile, is there a difference?

On Tue, 12 Oct 2004 11:11:54 -0500, Matt M. <[EMAIL PROTECTED]> wrote:
> >     $filepath = "bla/bla/files/";
> >     $filename = "file.zip";
> >     $fullpath = "$filepath/$filename";
> >
> >     header( ' Pragma: ');
> >     header( ' Content-Type: application/force-download' );
> >     header( ' Content-Type: application/octet-stream ' );
> >     header( ' Content-length:'.(string)(filesize($fullpath)));
> >     header( ' Cache-Control: private' );
> >     header( " Content-Disposition: attachment; filename='$filename'");
> >
> >     $fh = fopen("$filepath/$filename", "rb");
> >     fpassthru($fh);
> 
> it looks good to me.  You might want to try: header('Pragma:
> no-cache'); instead of header( ' Pragma: ');
> 
> Also, install http://livehttpheaders.mozdev.org/ on mozilla.  Will
> help with debugging
> 
> 
> 
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
> 
> 


-- 
<<--------------------------------------------------------
Jasper Howard - Database Administration
ApexEleven.com
530 559 0107
------------------------------------------------------->>

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

Reply via email to