I’ve written a script that exports an HTML table to a .csv file using PHP’s fputcsv function.
- Is it possible to use this same function to export to .xls?
- Is it possible to export it to an Excel document and include some formulas too?
I’ve written a script that exports an HTML table to a .csv file using PHP’s fputcsv function.
Take a look at PHPExcel.
I’ll definitely give it a look, thanks!
Is any of this possible using standard PHP?