블로그 이미지
괴스트

예진이와 고고씽!!

Rss feed Tistory
Dev/php 2010/04/12 14:31

PHP 엑셀로변경 저장시 한글일 깨질 경우

크리에이티브 커먼즈 라이선스
Creative Commons License
PHP 엑셀로변경 저장시 한글일 깨질 경우




<?php
    header("Content-type: application/vnd.ms-excel");
    header("Content-Disposition: attachment; filename=test.xls");
    header("Content-Description: PHP4 Generated Data");
    header( "Content-charset=euc-kr" );
?>

<html>

<head>

 

<meta http-equiv="Content-Type" content="application/vnd.ms-excel;charset=euc-kr">

 

</head>
<body>
<table border="1">
.

.

.


</table>
</body>
</html>

저작자 표시
TOTAL 114,291 TODAY 49