Archive for November, 2007
<?php
//———————————————– //
Function to force download of a file
//———————————————–
public function download($file_name, $file_path, $mime_type)
{
header(‘Content-Description: File Transfer’);
header(‘Content-Type: ‘.$mime_type);
header(‘Content-Disposition: attachment; filename="’.$file_name.‘";’);
header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
header(‘Content-Length: ‘ . filesize($file_path));
@readfile($file_path);
die();
}
?>
Sphere: Related Content