Skip to content

Instantly share code, notes, and snippets.

@harry-m
Created July 6, 2015 10:29
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save harry-m/6f9159295588dd486414 to your computer and use it in GitHub Desktop.
Save harry-m/6f9159295588dd486414 to your computer and use it in GitHub Desktop.
<?php
$file = $_GET['file'];
$today = date("Ymd-His");
header("Content-type:text/csv");
header("Content-Disposition:attachment;filename=report-" . $today . ".csv");
readfile($file);
unlink($file);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment