글
Dev/php 2010/04/12 14:31PHP 엑셀로변경 저장시 한글일 깨질 경우
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>
<?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>
RECENT COMMENT