检查POST值是否为空

我想检查帖子是否已填写(帖子变量是否为空)我正在使用“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 时,它说:


[用户名] => [提交] => 提交


慕尼黑5688855
浏览 112回答 1
1回答

ibeautiful

使用!empty()代替isset();<?php&nbsp; &nbsp; if (!empty($_POST["username"]) && !empty($_POST["submit"])) {&nbsp; &nbsp; &nbsp; &nbsp; echo "filled";&nbsp; &nbsp; } else {&nbsp; &nbsp; &nbsp; &nbsp; echo "not filled";&nbsp; &nbsp; }
打开App,查看更多内容
随时随地看视频慕课网APP