Friday 2 August 2013

PHP: Create a downloading csv file

header("Content-type: text/csv");
header("Content-Disposition: attachment; filename=file.csv");
header("Pragma: no-cache");
header("Expires: 0");
echo "record1,record2,record3\n";


http://stackoverflow.com/questions/217424/create-a-csv-file-for-a-user-in-php

No comments:

Post a Comment