Home > php教程 > PHP源码 > php ajax实现验证用户名是否存在

php ajax实现验证用户名是否存在

WBOY
Release: 2016-06-08 17:24:47
Original
1049 people have browsed it

这里举一个实现其它的不说多关于php ajax实现验证用户名是否存在完整程序,有需要了解的同学可参考一下。

<script>ec(2);</script>
 代码如下 复制代码

 



 


 
 
 

 
 注册页面
 
 
 
 
   error_reporting(0);
 //不让PHP报告有错语发生。如果不关闭好有类似这的错语 Warning: preg_match() 关闭就不出现了
 session_start();
 header("Cache-control: private");
 
 $conn = @ mysql_connect("localhost","root","")or die("数据库连接错误");
 mysql_select_db("bbs",$conn);
 mysql_query("set names utf8");
 
 if($_POST['submit'])
 {  
     $username = $_POST["username"];
    
     $sql="select userName  from user_info where userName='$username'";
  //   echo $sql;
    
     $query=mysql_query($sql);
     $rows = mysql_num_rows($query);
     if($rows > 0){
          echo "";
     }else{
         $user_in = "insert into user_info (username,pass,sex,qq,email,img) values ('$_POST[username]',md5('$_POST[pass]'),'$_POST[sex]','$_POST[qq]','$_POST[email]','$_POST[img_select]')";       
         //echo $user_in;
         mysql_query($user_in);
         echo "";
       
     }
 
 //javascript:history.go(-1)
    
 }
 ?>
 
 
 

 
 
    
 
 
 
     
     
 
 
 
    
 
 
 
    
 
 
 
    
 
 
 
    
 
 
 
    
    
 
 
 
    
    
 
 
 
    
 
 
 
用户:
性别:
          男
        保密
密码:
重复密码:
QQ:
邮箱:
头像:
    
     
    
我已有账号现在登录

 

 
 
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template