<form ><table> <tr> <td align="right">用户名:</td><td><input type="text"placeholder="Username" autofocus required /></td> </tr> <tr> <td align="right">密码:</td><td><input type="password" placeholder="Password" required /></td> </tr> </table></form></center><br/> <tr> <td><a href="">忘记密码?</a> <a href="">注册</a></td> </tr> <br/> <tr> <td colspan="2" align="center"> <input type="button" onclick=“window.location='index.html'” /> </td> </tr>
2 回答
已采纳
AnnatarHe
TA贡献27条经验 获得超7个赞
对比成功就跳转?数据从数据库里拉出来么?还是说自己就定义一个数据?
第一种就是用sql查询,看看有没有这么一条和用户输入的姓名密码相符合的数据。
代码如下(PHP):
$name=$_POST['name']; $pwd=$_POST['pwd']; $sql = "select * from user where name=$name and pwd=$pwd"; $result = $mysqli->query($sql); if($result){ //有数据,做一些操作 }else{ //没数据,返回错误 }
第二种的话就用'=='
验证的代码我就不写了,跳转一般用这个:
window.location.href='http://imooc.com';
添加回答
举报
0/150
提交
取消