我的 HTML 不是很厉害,每次都会遇到一些编码问题。
在这里,我有一个类似的表格:
<head>
<META http-equiv="Content-Type" Content="text/html; charset=ISO-8859-1">
[...]
<form method="post" action="thispage.php" >
<input name="title" type="text" id="title" size=75 value="" />
<textarea name="description" rows="10" cols="80" id="description"></textarea>
<input type="submit" value="GO" />
</form>
当我写一些引号时,例如:'
,它会以\'
So o'clock
will beo\'clock
你有想法吗?
编辑 :
奇怪的是,根据萤火虫的说法,POST 变量中的引号没有转义!