这是一个代码
<?php
if (isset($_POST['flag'])) {
echo "in";
$val=htmlspecialchars($_POST['area']);
echo $val;
if($val == "")
{
$abstractErrorMsg="Please enter the abstract of your article";
echo $abstractErrorMsg;
}
}
?>
<html>
<form method="post" action="">
<input type="hidden" name="flag" value="hidden">
Abstract*
<textarea name="area" style="width: 300px; height: 100px;">
</textarea>
<input type="submit" name="btn">
</form>
</html>
当我在不填写 textarea 的情况下提交表单时,它也不会显示错误消息。
谁能弄清楚是什么导致了这种奇怪的行为?