我想检查帖子是否已填写(帖子变量是否为空)我正在使用“isset”,而且它似乎不起作用,每次我提交表格时它都说已填写,即使表格没有填写.PHP代码:<?php if (isset($_POST["submit"])) { echo "filled"; } else { echo "not filled"; }?>HTML 代码:<form method="post"> <input type="text" name="username" /><br><br> <input type="submit" name="submit"></form>当我打印 $_POST 时,它说:[用户名] => [提交] => 提交
1 回答
ibeautiful
TA贡献1993条经验 获得超5个赞
使用!empty()代替isset();
<?php
if (!empty($_POST["username"]) && !empty($_POST["submit"])) {
echo "filled";
} else {
echo "not filled";
}
- 1 回答
- 0 关注
- 111 浏览
添加回答
举报
0/150
提交
取消