본문 바로가기
Web Program/Php Lecture

엑셀 파일 다운 받기

by 현이빈이 2008. 9. 8.
반응형

$fname = time();
header("Content-type: application/vnd.ms-excel");
header("Content-Disposition: attachment; filename=order_$fname.xls");
header("Expires: 0");
header("Cache-Control: must-revalidate, post-check=0,pre-check=0");
header("Pragma: public");

반응형