PHP(超文本预处理器)可用于小型网站的搭建,当用户需要注册登录是,需要与后台数据库进行匹配合格才能注册和登录,传统的方式步骤繁多,需要先连接数据库再用sql语句进行插入。
<"Content-type: text/html; charset=utf-8"); $conn =mysqli_connect("localhost","root",""); if (!$conn){ echo "<script>alert('连接失败!');history.go(-1);</script>"; } mysqli_select_db($conn,"liuyanban"); mysqli_query($conn,'SET NAMES utf8'); $password=$_POST['password']; $username=$_POST['username']; $face="yellow.png"; $result=mysqli_query($conn,"SELECT username from user1 where username = '$username'"); $a=mysqli_num_rows($result); if($a) { echo "<script language=javascript>alert('用户名已存在!');location.href='reg.html'</script>"; } else { $sql = mysqli_query($conn,"INSERT INTO user1(username,password,face)VALUES('1' ,'2','yellow.png')"); if($sql) { echo "<script language=javascript>alert('注册成功!');location.href='login.html'</script>"; } else { echo "<script>alert('注册失败!');location.href='reg.html'</script>"; } } "color: #ff0000">控制器中使用表单静态验证:public function doreg(){ $data=D('user'); $d=array(); $d['username']=$_POST['username']; $d['password']=$_POST['password']; $d['time']=date("Y-m-d H:i:s",time()); $d['qq']=$_POST['qq']; $d['class']=$_POST['class']; $mess=$data->create(); if (!$mess){ //表单自动验证 $this->error($data->getError(),'Member/member',3); }else{ $data->add(); echo "<script language=javascript>alert('注册成功!');location.href='member.html'</script>"; } }模板中列出需要验证的字段:
<?php namespace Home\Model; use Think\Model; class UserModel extends Model{ protected $tableName ='user'; protected $_validate=array( //进行静态验证 //array(验证字段1,验证规则,错误提示,[验证条件,附加规则,验证时间]), array('username','require','用户名必填!'), array('username','','帐号名称已经存在!',0,'unique',1), array('repassword','password','两次密码不一致!',0,'confirm'), array('qq','require','qq必填!'), array('qq','','帐号名称已经存在!',0,'unique',1), array('class','require','班级必填!'), array('j_verify','require','验证码必须!'), ); } ?>这里以注册为例,登录类似,若验证错误,则运用$this->error($data->getError(),'Member/member',3);表单静态验证使用很方便。
以上这篇老生常谈php中传统验证与thinkphp框架(必看篇)就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
标签:
php,thinkphp框架
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件!
如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
桃源资源网 Design By www.nqtax.com
暂无“老生常谈php中传统验证与thinkphp框架(必看篇)”评论...