'PHP 엑셀 출력'에 해당되는 글 1건

  1. 2011.10.06 [PHP] - 엑셀 출력 (Excel Export) 함수

[PHP] - 엑셀 출력 (Excel Export) 함수

PHP 2011. 10. 6. 09:21
반응형
<?php
header("Content-type: application/vnd.ms-excel; name='excel'");
header("Content-Disposition: filename=export.xls");
// Fix for crappy IE bug in download.
header("Pragma: ");
header("Cache-Control: ");
?>
<html>
<head></head>
<body>a
</body>
</html>
반응형
: