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