[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>
반응형
'PHP' 카테고리의 다른 글
[PHP] - 데이터 함수 (0) | 2011.10.13 |
---|---|
[PHP] - 자릿수 채우기 (Str_pad)함수 사용예제 (0) | 2011.10.07 |
[PHP] - 접속 IP 확인함수 GETENV (0) | 2011.09.07 |
[PHP] - 입력값이 한글인지 영문이지 체크하는 소스 사용법 (0) | 2011.09.05 |
[PHP] - QRcode이미지 생성기 사용법 (0) | 2011.09.02 |