PHP 엑셀로 저장하기
IT 개발/PHP 2011. 4. 7. 15:30
1. 일반적인 HTML문 앞에 header 넣기
<?
header( "Content-type: application/vnd.ms-excel; charset=euc-kr");
header( "Content-Disposition: attachment; filename=저장할 파일명" );
header( "Content-Description: PHP4 Generated Data" );
?>
<html>
<head>
</head>
<body>
<table>
<tr>
<td>aaaaaaa</td>
<td>bbbbbbb</td>
<td>ccccccc</td>
</tr>
<tr>
<td>ddddddd</td>
<td>eeeeeee</td>
<td>ffffffffffffffff</td>
</tr>
</table>
</body>
</html>
header( "Content-type: application/vnd.ms-excel; charset=euc-kr");
header( "Content-Disposition: attachment; filename=저장할 파일명" );
header( "Content-Description: PHP4 Generated Data" );
?>
<html>
<head>
</head>
<body>
<table>
<tr>
<td>aaaaaaa</td>
<td>bbbbbbb</td>
<td>ccccccc</td>
</tr>
<tr>
<td>ddddddd</td>
<td>eeeeeee</td>
<td>ffffffffffffffff</td>
</tr>
</table>
</body>
</html>
2. HTML을 변수로 만들어서 출력시키기
<?
header( "Content-type: application/vnd.ms-excel" );
echo("$output");
page_close();
?>
header( "Content-type: application/vnd.ms-excel" );
echo("$output");
page_close();
?>
'IT 개발 > PHP' 카테고리의 다른 글
PHP 시간 처리 방법 (0) | 2011.12.08 |
---|---|
줄바꿈을 html에서 보여줄 때 <br> 로 바꿔주는 명령어 (0) | 2011.04.29 |
이클립스에서 PHP 사용하기 관련자료 (0) | 2011.03.28 |
이클립스 단축키 가이드 (*) (0) | 2011.03.22 |
ECLIPSE에서 PHP개발 팁 (0) | 2011.03.22 |