쇼핑하우 연동 상품명 한글깨짐 오류 수정

This commit is contained in:
chicpro
2014-02-13 13:26:35 +09:00
parent c5fcd33c63
commit c20a7d3a84
2 changed files with 20 additions and 0 deletions

View File

@ -1,6 +1,8 @@
<?php
include_once('./_common.php');
ob_start();
header("Content-Type: text/html; charset=utf-8");
/*
@ -139,4 +141,12 @@ for ($i=0; $row=sql_fetch_array($result); $i++)
HEREDOC;
}
$content = ob_get_contents();
ob_end_clean();
// 131227 : 쇼핑하우에서는 아직 utf-8 을 지원하지 않고 있음
$content = iconv('utf-8', 'euc-kr', $content);
echo $content;
?>

View File

@ -1,6 +1,8 @@
<?php
include_once('./_common.php');
ob_start();
header("Content-Type: text/html; charset=utf-8");
/*
@ -201,4 +203,12 @@ HEREDOC;
}
}
}
$content = ob_get_contents();
ob_end_clean();
// 131227 : 쇼핑하우에서는 아직 utf-8 을 지원하지 않고 있음
$content = iconv('utf-8', 'euc-kr', $content);
echo $content;
?>