-1

我有一个 GPA 计算器表格,当用户输入他们的信息时,我希望它保持填充在屏幕上。

    E-mail: <input type="text" size="35" name="email" value="<?php echo $email; ?>">
    <span class="error"><?php echo $emailErr; ?></span>
    <br><br>

    <input type="checkbox" name="agree" >
    I agree to the terms and conditions of this website.
    <span class="error"><?php echo $agreeErr; ?></span>
    <br><br>

我的其他变量没有问题,但我无法让我的复选框留在屏幕上。当用户点击提交时,复选框将再次取消选中。我怎样才能让它在屏幕上保持选中状态?

谢谢!

4

1 回答 1

0

通过反复试验,我找到了一个简单的解决方案:

<input type="checkbox" name="agree" 
value="agree" <?php if(isset($_POST['agree'])) echo "checked='checked'";?> 
>I agree to the terms and conditions of this website.
<span class="error"><?php echo $agreeErr; ?></span>

以防万一其他人陷入同样的​​问题!

于 2019-10-17T04:08:44.103 回答