<?php
header("Pragma: public");
header("Pragma: no-cache");
header("Expires: 0");
header("Cache-Control: must-revalidate, post-check=0,
pre-check=0");
header("Content-Type: application/vnd.ms-excel");
header("Content-Disposition: attachment;
filename=mydowns.xls");
echo "PHP输出EXCEL文件\n";
for($i=0;$i<10;$i++){
echo $i."\n";
}
echo "\n";
?>
