如何在像这样的数组提交的表单上执行htmlspecialchars:
<input name="sv_votes[][author]" />
<input name="sv_votes[][author]" />
<input name="sv_votes[][author]" />
这似乎没有做任何事情:
htmlspecialchars($_POST['sv_votes'])
答案 0 :(得分:0)
循环数组。
foreach($_POST['sv_votes'] as $key => $value){
$_POST['sv_votes'][$key] = htmlspecialchars($value);
}