anatak Posted November 6, 2008 Share Posted November 6, 2008 Does anybody have any experience exporting a mysql query result to open office spreadsheets ? I would like to build a php application that export queries into a spreadsheet (excell of open office) My preference is open office because open office is free to use. Any ideas how to start on this ? kind regards anatak Link to comment https://forums.phpfreaks.com/topic/131569-solved-how-to-export-mysql-query-result-to-open-office-spreadsheet/ Share on other sites More sharing options...
JD* Posted November 6, 2008 Share Posted November 6, 2008 It's not too hard. You'll want to look up how to export to a file, and then you'd write all of your results where each column would have a \t after it and each row would have a \r after it. When you go to import it into your spreadsheet program, it'll see it as a comma-delimited file (the \t for tabs) and should import it without a problem. If you want a more concrete description (with code) let me know. Link to comment https://forums.phpfreaks.com/topic/131569-solved-how-to-export-mysql-query-result-to-open-office-spreadsheet/#findComment-683367 Share on other sites More sharing options...
anatak Posted November 6, 2008 Author Share Posted November 6, 2008 Hey JD, Thanks for the pointers. The project that needs this is still not sure and it will be at least a month after starting that I ll be trying to do this. At that time I ll post an update in this topic. It looks like I first need to export to a comma delimited file and then import in the spreadsheet. Is it possible to generate a spreadsheet file directly from the Mysql result with php ? Link to comment https://forums.phpfreaks.com/topic/131569-solved-how-to-export-mysql-query-result-to-open-office-spreadsheet/#findComment-683538 Share on other sites More sharing options...
anatak Posted November 7, 2008 Author Share Posted November 7, 2008 Project was canceled so I don't need any answers at the moment but JD has helped me a lot by making me think about exporting stuff. thanks a lot Link to comment https://forums.phpfreaks.com/topic/131569-solved-how-to-export-mysql-query-result-to-open-office-spreadsheet/#findComment-684496 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.