i created with php zip ( http://php.net/manual/de/book.zip.php ) a zip file

now i have to send it to the browser / force a download for it.

link|improve this question

43% accept rate
possible duplicate of Any way to force download a remote file? – cweiske Sep 19 '11 at 12:33
feedback

2 Answers

up vote 1 down vote accepted
<?php
    // or however you get the path
    $yourfile = "/path/to/some_file.zip";

    $file_name = basename($yourfile);

    header("Content-Type: application/zip");
    header("Content-Disposition: attachment; filename=$file_name");
    header("Content-Length: " . filesize($yourfile));

    readfile($yourfile);
    exit;
?>
link|improve this answer
feedback

Set the content-type, content-length and content-disposition headers, then output the file.

header('Content-Type: application/zip');
header('Content-Disposition: attachment; filename="'.$filename.'"');
header('Content-Length: '.filesize($filepath) );
readfile($filepath);

Setting Content-Disposition: attachment will suggest the browser to download the file instead of displaying it directly.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.