양식의 제출 버튼을 클릭하면 다음 오류 메시지가 나타납니다.
"HTML 문서의 문자 인코딩이 선언되지 않았습니다. 문서에 US-ASCII 범위 밖의 문자가 포함 된 경우 일부 브라우저 구성에서 텍스트가 왜곡되어 렌더링됩니다. 페이지의 문자 인코딩은 문서 또는 전송 프로토콜에서. "
insert.html :
<!DOCTYPE html PUBLIC"-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>insert page</title></head>
<body>
<h1> Insert Page </h1>
<form action="insert.php" method="post" enctype="application/x-www-form-urlencoded" >
<p>Title:<input type="text" name="title" size="40"/></p>
<p>Price:<input type= "text" name="price" size="40" /></p>
<p><input type="submit" value="Insert" />
<input type="reset" value="Reset" /></p>
</form>
</body>
</html>
insert.php :
<?php
$title = $_POST["title"];
$price = $_POST["price"];
echo $title;
?>
내 코드에서 문제가 어디에 있는지 모르겠습니다. 도와주세요.
insert.html
-> 로 지정하십시오 insert.php
. 그리고 양식 처리 파일 ( insert.php
)의 이름을 지정하십시오 insert_action.php
. (확실하지가 도움이하지만 혼합하지 않을 경우 html
와 php
PHP를 사용하는 경우 페이지를 참조하십시오.)