php中传统验证与thinkphp框架

      PHP(超文本预处理器)可用于小型网站的搭建,当用户须要注册登陆是,须要与后台数据库进行匹配合格才能注册和登陆,传统的方式步骤繁多,须要先链接数据库再用sql语句进行插入。javascript

<?php
header("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>";
      }
}
?> 

    以上是一个原生php注册实例,须要用mysqli_select_db()、mysqli_query()等函数先进行数据库链接,同时只有经过mysqli_query()函数才能执行sql语句,最后经过if语句进行类别判断和其余一系列限制操做。在原生php阶段实用性比较高,便于理解,过程很清晰,可是在一个项目工程中用这样的语句代码编写不便于相互交流,很是繁重复杂,因此须要运用thinkphp框架搭建项目才能使编码人员相互能够对接,也便于后期代码的修改和功能的添加。那么这里就不赘述框架详细了,因此在thinkphp框架下mvc模式中运用控制器(C)和模型(M)进行表单自动验证:php

控制器中使用表单静态验证:html

 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>";
                      }
                  }

 

 模板中列出须要验证的字段:java

<?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);表单静态验证使用很方便。mysql

相关文章
相关标签/搜索