Skip to content

Instantly share code, notes, and snippets.

@rastating
Created February 15, 2015 01:08
Show Gist options
  • Save rastating/17347e00d4b434f50a81 to your computer and use it in GitHub Desktop.
Save rastating/17347e00d4b434f50a81 to your computer and use it in GitHub Desktop.
Troublesome headers
header("Content-type: text/x-csv"); # DECLARING FILE TYPE
header("Content-Transfer-Encoding: binary");
header("Content-Disposition: attachment; filename=" . $csv_file_name); # EXPORT GENERATED CSV FILE
header("Pragma: no-cache");
header("Expires: 0");
print($CSV_FILE_CONTENT);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment