<form action='checks.php' method='POST'>
    <div class ="bookinform">
      <table>
         <tr>
            <td>Name of Driver *</td>
            <td>
               <input type='Text' id="driver_name" name='driver_name' required autocomplete="off" size='7' maxlength='25' style='width:400px;font-family:Century Gothic' value = "">
            </td>
         </tr>
         <tr>
            <td>&nbsp;</td>
            <td></td>
         </tr>
         <tr>
            <td>Vehicle Reg *</td>
            <td>
               <input type='Text' id="Vehicle_Reg" name='Vehicle_Reg' required autocomplete="off" size='7' maxlength='15' style='width:400px;font-family:Century Gothic; text-transform:uppercase;' value = "">
            </td>
         </tr>
         <tr>
            <td>&nbsp;</td>
            <td></td>
         </tr>
         <tr>
            <td valign='top'>Haulier *</td>
            <td valign='top'>
              <input type='Text' id="query" name='haulier' style='width:400px; font-family:Century Gothic; text-transform:uppercase;' value = "">

         <tr>
            <td>&nbsp;</td>
            <td></td>
         </tr>

         </table>

     <input type='submit' name='FORM' value="Book-in Piece/s" style='width:100%;font-family:Century Gothic; margin-top:10px; color:#2EFE2E;'>
   </form>

在按下提交按钮后,如何将输入到Name of driveVehicle regHaulier中的值保留在那里?我想要这个,这样他们就不必连续进入。我的表单已经作为一个动作转到其他地方,以便我可以在这个页面上使用$_POST

最佳答案

你所需要做的就是检查输入的值是否已经被POSTed,如果已经被echoed,则检查该值。
为此,在val属性中添加:

<?php if(isset($_POST["name_of_input"])) echo $_POST["name_of_input"]; ?>

…或使用三元运算符:
<?php echo(isset($_POST["name_of_input"]) ? $_POST["name_of_input"] : ""); ?>

使用htmlspecialchars()输出也是很好的做法,因为某些POST内容可能包含无效的HTML。
完整示例
<input type='Text'
    id="driver_name"
    name='driver_name'
    required
    autocomplete="off"
    size='7'
    maxlength='25'
    style='width:400px;font-family:Century Gothic'
    value="<?php echo (isset($_POST["driver_name"]) ? htmlspecialchars($_POST["driver_name"]) : ""); ?>">

关于php - 提交后如何将值保持在其字段中?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/33419205/

10-11 01:11