HTML 폼 데이터를 utf-8에서 euc-kr로 넘길 때 한글 깨짐 해결
페이지 정보
본문
utf-8 환경에서 euc-kr 환경으로 폼 데이터를 전송할 경우 폼 데이터를 euc-kr로 변환해서 전송해야 하는데 form 속성에 accept-charset=”euc-kr” 속성을 추가해 주면 된다.
<form ... accept-charset="서버로 보낼 인코딩">
<!doctype html>
<html>
<head>
<meta charset="utf-8"></head>
<body>
<form name="order" method="post" accept-charset="euc-kr">
</form>
</body>
</html>
관련자료
https://ncube.net/8841
https://taegon.kim/archives/1692
http://blog.sunbros.co.kr/wp/archives/192
<form ... accept-charset="서버로 보낼 인코딩">
<!doctype html>
<html>
<head>
<meta charset="utf-8"></head>
<body>
<form name="order" method="post" accept-charset="euc-kr">
</form>
</body>
</html>
관련자료
https://ncube.net/8841
https://taegon.kim/archives/1692
http://blog.sunbros.co.kr/wp/archives/192
댓글목록
등록된 댓글이 없습니다.