Download Zip file from server

by Mukesh Dak on 2010 Jan 11

in PHP

    // the next three lines force an immediate download of the zip file:
    header("Content-type: application/octet-stream");
    header("Content-disposition: attachment; filename=test.zip");
    echo $zipfile -> file();

Leave a Comment

Previous post: