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
Try this may help you, header('Content-Disposition: attachment; filename="'.$file_name.'"');
instead of
header('Content-Disposition: attachment; filename='.$file_name);