다음 쇼핑하우 인코딩을 euc-kr 로 변경

This commit is contained in:
SIR
2014-02-14 11:57:47 +09:00
parent c5fcd33c63
commit 32f0f819dd

View File

@ -1,6 +1,7 @@
<?php
include_once('./_common.php');
ob_start();
header("Content-Type: text/html; charset=utf-8");
/*
@ -139,4 +140,10 @@ for ($i=0; $row=sql_fetch_array($result); $i++)
HEREDOC;
}
?>
$content = ob_get_contents();
ob_end_clean();
$content = iconv('utf-8', 'euc-kr', $content);
echo $content;
?>