• <bdo id='yKSOs'></bdo><ul id='yKSOs'></ul>

    <small id='yKSOs'></small><noframes id='yKSOs'>

  • <tfoot id='yKSOs'></tfoot>

        <i id='yKSOs'><tr id='yKSOs'><dt id='yKSOs'><q id='yKSOs'><span id='yKSOs'><b id='yKSOs'><form id='yKSOs'><ins id='yKSOs'></ins><ul id='yKSOs'></ul><sub id='yKSOs'></sub></form><legend id='yKSOs'></legend><bdo id='yKSOs'><pre id='yKSOs'><center id='yKSOs'></center></pre></bdo></b><th id='yKSOs'></th></span></q></dt></tr></i><div id='yKSOs'><tfoot id='yKSOs'></tfoot><dl id='yKSOs'><fieldset id='yKSOs'></fieldset></dl></div>
      1. <legend id='yKSOs'><style id='yKSOs'><dir id='yKSOs'><q id='yKSOs'></q></dir></style></legend>

      2. PHP 在验证错误后保留输入的值

        时间:2023-09-21
        <tfoot id='WcrST'></tfoot>

        <small id='WcrST'></small><noframes id='WcrST'>

          <i id='WcrST'><tr id='WcrST'><dt id='WcrST'><q id='WcrST'><span id='WcrST'><b id='WcrST'><form id='WcrST'><ins id='WcrST'></ins><ul id='WcrST'></ul><sub id='WcrST'></sub></form><legend id='WcrST'></legend><bdo id='WcrST'><pre id='WcrST'><center id='WcrST'></center></pre></bdo></b><th id='WcrST'></th></span></q></dt></tr></i><div id='WcrST'><tfoot id='WcrST'></tfoot><dl id='WcrST'><fieldset id='WcrST'></fieldset></dl></div>
                <tbody id='WcrST'></tbody>
            1. <legend id='WcrST'><style id='WcrST'><dir id='WcrST'><q id='WcrST'></q></dir></style></legend>
              • <bdo id='WcrST'></bdo><ul id='WcrST'></ul>
                  本文介绍了PHP 在验证错误后保留输入的值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  我有一个需要验证的简单表单.
                  我用 empty() 函数做到了这一点.如果验证未通过,它会向用户发出警报.创建此警报后,所有输入的值都会消失.

                  I have a simple form that needed validation.
                  I did this with the empty() function. If the validation doesn't pass it gives the user an alert. As soon as this alert is created all entered values are gone.

                  我想保留它们.

                  这就是我所做的:

                  <form id="" name="" action="<?php echo get_permalink(); ?>" method="post">
                      <table>
                          <tr>
                              <td>
                                  Name:<input type="text" id="name" name="name">
                              </td>
                          </tr>
                          <tr>
                              <td>
                                  <input class="submit-button" type="submit" value="Send" name="submit">
                              </td>
                          </tr>
                      </table>
                  </form>
                  <?php
                      if($_POST["submit"]){
                          if (!empty ($_POST["name"])){
                            // do something
                          }else{
                              ?>
                              <script type="text/javascript">
                                  alert('U heeft niet alle velden ingevuld. Graag een volledig ingevuld formulier versturen');
                              </script>
                              <?php
                          }
                  ?>  
                  

                  推荐答案

                  将输入的值作为默认值传递给输入:

                  Pass that entered value as a default value to input:

                  <input type="text" id="name" name="name" value="<?php echo isset($_POST["name"]) ? $_POST["name"] : ''; ?>">
                  

                  这篇关于PHP 在验证错误后保留输入的值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:PHP 和 Postgres:捕捉错误? 下一篇:PHP Try and Catch for SQL Insert

                  相关文章

                  最新文章

                    <bdo id='KGxAT'></bdo><ul id='KGxAT'></ul>

                      <i id='KGxAT'><tr id='KGxAT'><dt id='KGxAT'><q id='KGxAT'><span id='KGxAT'><b id='KGxAT'><form id='KGxAT'><ins id='KGxAT'></ins><ul id='KGxAT'></ul><sub id='KGxAT'></sub></form><legend id='KGxAT'></legend><bdo id='KGxAT'><pre id='KGxAT'><center id='KGxAT'></center></pre></bdo></b><th id='KGxAT'></th></span></q></dt></tr></i><div id='KGxAT'><tfoot id='KGxAT'></tfoot><dl id='KGxAT'><fieldset id='KGxAT'></fieldset></dl></div>
                      <tfoot id='KGxAT'></tfoot>

                      <small id='KGxAT'></small><noframes id='KGxAT'>

                    1. <legend id='KGxAT'><style id='KGxAT'><dir id='KGxAT'><q id='KGxAT'></q></dir></style></legend>