Creating an Excel download |
In my app I have a function to create an excel download from the database. I do this using a controller, a helper and a model
Here is my controller, Excel.php PHP Code: public function export_to_excel() Here is my helper, excel_helper.php PHP Code: function create_excel_export() Here is my model, Users_model.php PHP Code: public function find_users(){ While running this does cause an excel file to be downloaded as expected - the browser console report an error - 'Failed to load resource: Frame load interrupted' I have modified my controller by adding this but it makes no difference Code: header("Pragma: public"); Has anyone ever seen anything like this? I am using Safari on Mac OSX |
Messages In This Thread |
Creating an Excel download - by Happy Camper - 03-28-2016, 09:35 AM
RE: Creating an Excel download - by InsiteFX - 03-28-2016, 01:25 PM
RE: Creating an Excel download - by Happy Camper - 03-29-2016, 04:30 AM
RE: Creating an Excel download - by easymusic - 06-07-2016, 12:08 PM
RE: Creating an Excel download - by InsiteFX - 06-07-2016, 12:48 PM
RE: Creating an Excel download - by easymusic - 06-07-2016, 01:10 PM
RE: Creating an Excel download - by InsiteFX - 06-07-2016, 02:13 PM
RE: Creating an Excel download - by skunkbad - 06-07-2016, 02:48 PM
|