I need enable the website users to export some data into Microsoft Excel format. I googled around, but most solutions require Windows platform and that MS Office is installed to create the file. The website runs PHP on a Linux server, so I'm looking for PHP-only solution.
I'm currently using CSV format (via fputcsv function) and on some Windows machines the browser correctly opens the file with Excel, but it looks like different versions of Excel expect different field separators. I'm trying to find some solution that would work with all versions of MS Office.
Thanks.