Jun 6, 2013

Forcing Browser to download File instead of opening

<?php
header('Content-Type: application/download');
header('Content-Disposition: attachment; filename="file.csv"');
header("Content-Length: " . filesize("file.csv"));

$fp = fopen("file.csv", "r");
fpassthru($fp);
fclose($fp);
?>

No comments: