I would like to export a HTML table to Excel.
I have a looked at various client side options with jQuery plugins to export HTML tables to CSV and Excel, but these are not good as they are not supported in IE and in addition gives a warning message in all browsers. Also for larger Excel files, client side export is not optimal.
I have also looked at PHPExcel as I am using PHP, but there does not seem to be any native support for exporting a HTML table to Excel. And considering that I have custom tables which are modified based on input from the database, I cannot print the database object directly to PHPExcel.
I am using the Yii framework with a MVC approach.
So what I really want is to be able to export my HTML tables to Excel. Any ideas of how to do this?? I really need help with this one.