۱۷-آذر-۱۳۹۲, ۰۲:۴۹:۱۶
اینم کد من :
$UName و $Mobile آرایه هایی هست که داده های من از جدول گرفتن ریختن داخل این ها
کد php:
$Counter=count($UName);
$TblData="<table>";
for($i=0;$i<=$Counter;$i++){
$TblData.="<tr><td>".$UName[$i]."</td><td>".$Mobile[$i]."</td></tr>";
}
$TblData.="</table>";
ob_start();
ob_clean();
$file="tel.xls";
header("Content-Type: application/vnd.ms-excel; charset=utf-8");
header("Content-Disposition: attachment; filename=".$file);
header("Pragma: no-cache");
header("Expires: 0");
echo $TblData;
die();