Jump to content

[SOLVED] Anyone have a good tutorial or script for exporting mysql entries into excel?


rxbanditboy1112

Recommended Posts

It's relatively simple.

 

Excel reads .CSV files (comma separated values) so you just need to output the database results line by line, with the values separated by commas.

 

Just use a database class like ezSql to get the results from the database, then loop through them with a nested loop (one for the rows, then the nested one for the columns / vallues).

 

Any quotes need to be output as "" (2 quotes in a row)

 

Line endings should be \r\n

 

If you want to be able to click a link then have Excel want to open it as a spreadsheet, add the following header to your plain text output first:

 

$filename = "My excel file.xls";

header("Content-disposition: attachment; filename=\"$filename\"");

header("Content-type: application/vnd.ms-excel");

 

Cheers,

Dave

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.