如何检查是否设置了特定字段?
例如 :
html
<form method="post" action="check.php">
name <input type="text" name="username" /> <br />
text to send <input type="text" name="to_send" /> <br />
<input type="submit" value="submit" />
</form>
php
if(isset($_POST['username'])) {
echo "Username is set";
}else if(isset($_POST['to_send'])) {
echo "text-to-send is set";
}
无论我在username
字段中输入内容还是不if
声明总是评估为true
. 这是为什么 ?
如何检查是否设置了特定字段?