Skip to content

Instantly share code, notes, and snippets.

@ikarius6
Last active August 29, 2015 14:24
Show Gist options
  • Save ikarius6/0472a37169fd4bd51e52 to your computer and use it in GitHub Desktop.
Save ikarius6/0472a37169fd4bd51e52 to your computer and use it in GitHub Desktop.
<?php
/* PHP Headers for CSV File with UTF-8 - By MrJack*/
header("Content-type: text/csv");
header("Content-Disposition: attachment; filename=reporte_ganadores_".date("d-m-Y").".csv");
header("Pragma: no-cache");
header("Expires: 0");
echo "\xEF\xBB\xBF"; //<--- here is the magic
echo "WHATÉVER";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment