大大们好
最近写一个表单
但不知为何出现乱码,
以下是我写的程式码,
已经 写以下这行了:
<meta http-equiv="content-type" content="text/html; charset=UT-8">
请问应该修正哪里呢?
谢谢~
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
</head>
<body>
<p><font size="+3" >用餐满意度问卷调查 </font></p>
<hr width="1500">
<form method="POST" action="submit.php">
<p>你的姓名:<input type="text" size="30" ></p>
<p>今天点的餐点:<input type="radio" name="var" value="1"> 牛小排
<input type="radio" name="var" value="1"> 鲔鱼排
<input type="radio" name="var" value="1"> 意大利面
<input type="radio" name="var" value="1"> 披萨</p>
<p>你对今日用餐的满意度:<input type="radio" name="var" value="1"> 很好
<input type="radio" name="var" value="1"> 普通
<input type="radio" name="var" value="1"> 差</p>
有什么其他的意见吗:<textarea name="var" cols="50" rows="10"></textarea>
<hr width="1500">
<input type="submit" name="var_submit" value="确定送出你的问卷">
</form>
</body>
</html>