gpt4 book ai didi

php - 使用数据库查找根据输入更新表单类

转载 作者:行者123 更新时间:2023-11-29 16:41:24 25 4
gpt4 key购买 nike

我不知道从哪里开始。基本上,当名为 Username 的数据库表中的用户名等于用户写入的字符串时,我希望输入的类更改为 has-success 。表单的当前代码是:

<div class='container col-md-3 rounded p-5 mt-5 border'>
<form action="Authentication.php" method ="post">
<h3 class='text-center'>Please Login</h3>
<h5 class='pt-3'>Enter Username and Password</h5>
<div class="form-group mb-0">
<input class='form-control float-left mt-3 mb-1' placeholder="Username" type="text" name="username">
<br>
<input class='form-control float-left mb-3' placeholder="Password" type="password" name="password">
<br>
</div>
<div class="text-center">
<input type="submit" class='btn btn-primary btn-sx' value="Login">
</div>
</form>
</div>

因此,每当有人在字段中输入 placeholder="username" 时,它都需要检查该字符串是否与表 中的 Username 列中的任何字符串匹配学生,如果确实将类(class)更新为成功

非常感谢您的帮助,托比

最佳答案

如果上面的代码在 Authentication.php 中,由表单调用,那么在检查 $_POST 是否已提交的地方,初始化 $extraClass = '';如果(your_condition 为 true)$extraClass = '成功';

然后在表单下方添加

这样,如果条件 si 不满足,它将保持为空。

关于php - 使用数据库查找根据输入更新表单类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53319909/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com