Re: Excel export problem in IE



| <?php
| header("Content-type: application/vnd.ms-excel; name='excel'");
| header("Content-Disposition: filename=export.xls");
| header("Pragma: no-cache");
| header("Expires: 0");

try:

content-type: application/octet-stream
content-disposition: attachment; filename=export.xls
content-transfer-encoding: binary

hth,

me


.