I\'ve been using a PHP script to export data from my database (mysql) to a XLS file.
While the file export process is working fine on Firefox and IE.
I am g
I've found out what my problem was in the header section of the PHP export code. The incorrect and correct lines are as follows:
Incorrect
header("Content-Disposition: attachment;filename=\"".$this->filename."\"");
Correct
header("Content-Disposition: attachment; filename=\"".$this->filename."\"");
The correction being adding a space between attachment; and filename
Hope this helps.