I\'m struggling with an odd error. I have a simple web app that grabs stuff from a DB then outputs it as a downloadable csv file. It works on firefox and chrome, but IE fail
The only extra code I had to add for IE to work with SSL was: header("Pragma: public"); So my headers look like this now:
header("Pragma: public");
header("Pragma: public"); header("Content-Type: application/octet-stream"); header("Content-Disposition: attachment; filename=some_filename.csv");