如何防止Textbox删除用户在出错时输入的当前值?

时间:2017-03-13 13:57:44

标签: php html mysql error-handling textbox

$sql = "select * from tbl_pi where patientNumber='" . $pn . "'";
$res = mysql_query($sql);
if (mysql_num_rows($res) == 1) {
    echo '<center>
            <p style="background-color: #ff3333;
               font-family:calibri;
               color:white;
               font-weight: bold;">PATIENT NUMBER ALREADY IN USE!!</p>';
}

错误检测后,用户别无选择,只能重新开始,因为输入的上一个数据全部消失或重置。

如何防止这种情况发生?

0 个答案:

没有答案