Hi to all,
i am written a code for downloading the excel file with the records from the mysql..all r working fine but the problem is...it is not downloading in IE6 and IE7...i dont no where is the problem is..and not showing any error msg also please help me this the code is
i am written a code for downloading the excel file with the records from the mysql..all r working fine but the problem is...it is not downloading in IE6 and IE7...i dont no where is the problem is..and not showing any error msg also please help me this the code is
Code:
<?php $today = date("d-m-Y"); session_cache_limiter('none'); header("Expires: 0"); header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT"); header("Cache-Control: must-revalidate, post-check=0, pre-check=0"); header("Cache-Control: post-check=0, pre-check=0", false); header("Pragma: no-cache"); header("Content-Type: application/force-download"); header("Content-Type: application/octet-stream"); header("Content-Type: application/download"); header('Content-Description: File Transfer'); header("Content-type: application/vnd.ms-excel;charset:UTF-8"); header("Content-Disposition: inline; attachment; filename=RegisterUser_$today.xls"); print "\n"; ?>
Comment