Jump to content

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


Recommended Posts

I have been looking everywhere, but the scripts constantly fail. Anyone know of a good one. The one on php freaks doesn't work. I can see the thread, but I can't see the tutorial and I can't see any of the posts in the thread.

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

No worries. Yeah - it took a while to figure it all out but easy when you know!

If you want to get into formatting Excel you need to look at the xml spreadsheet format.

Probably not worth the hassle though!

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.