vote up 2 vote down star
2

Hi,

I have data in MySQL. I am sending the user a URL to get their data out as a CSV.

I have the e-mailing of the link, mysql query, etc covered.

How can I, When they click the link, have a pop-up to download a CVS with the record from MYSQL? I have all the info to get the record already I just dont see how to have PHP create the CSV and let them download a file with a .csv extension.

flag

6 Answers

vote up 8 vote down check

Try:

header("Content-type: application/csv");
header("Content-Disposition: attachment; filename=file.csv");
header("Pragma: no-cache");
header("Expires: 0");

echo "record1,record2,record3\n";

etc

link|flag
vote up 0 vote down

First make data as a String with comma delimiter (separated with ",") ,Something like this

$CSV_string="No,Date,Email,Sender Name,Sender Email \n";//making string, So "\n" is used for newLine

$rand = rand(1,50);// make a random int number between 1 to 50 $file ="export/export".$rand.".csv";// for avoiding cache in Client/Server side it is recommended that the file name be different

file_put_contents($file,$CSV_string);

/* *Or try this code if $CSV_string is an array*
 fh =fopen($file, 'w');
fputcsv($fh , $CSV_string , ","  , "\n" );// *"," is delimiter // "\n" is new line*
fclose($fh);
*/
link|flag
vote up 0 vote down

This will do it very easily...

Create .CSV Files From PHP

It prompts the file to the user as you want.

link|flag
vote up 0 vote down

/******************************* Write Date to csv file *******************************/

$_file = 'show.csv'; $_fp = @fopen( $_file, 'w' );

$result=mysql_query("select name,compname,job_title,email_add,phone,url from UserTables where id=3");

while (list($Username,$Useremail_add,$Userphone,$Userurl)=mysql_fetch_row($result)) {

$_csv_data=$Username.','.$Useremail_add.','.$Userphone.','.$Userurl . "\n";

@fwrite( $_fp, $_csv_data );

}

@fclose( $_fp );

?>

link|flag
vote up 0 vote down

Create your file then return a reference to it with the correct header to trigger the Save As - edit the following as needed. Put your CSV data into $csvdata.

$fname = 'myCSV.csv';
$fp = fopen($fname,'w');
fwrite($fp,$csvdata);
fclose($fp);

header('Content-type: application/csv');
header("Content-Disposition: inline; filename=".$fname);
readfile($fname);
link|flag
vote up 0 vote down

To have it send it as a CSV and have it give the file name, use header():

http://us2.php.net/header

header('Content-type: text/csv');
header('Content-disposition: attachment; filename="myfile.csv"');

As far as making the CSV itself, you would just loop through the result set, formatting the output and sending it, just like you would any other content.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.