Return to Snippet

Revision: 18197
at September 23, 2009 15:53 by paulgrenwood


Initial Code
/********************
*@file - path to file
*/
function force_download($file)
{
    if ((isset($file))&&(file_exists($file))) {
       header("Content-length: ".filesize($file));
       header('Content-Type: application/octet-stream');
       header('Content-Disposition: attachment; filename="' . $file . '"');
       readfile("$file");
    } else {
       echo "No file selected";
    }
}

Initial URL


Initial Description
Provide files to the user by forcing them to download.

Initial Title
Force File Download

Initial Tags
php, download

Initial Language
PHP