欢迎来到梦幻西游发布网新开服!

PHP教程

当前位置: 主页 > 网络编程 > PHP教程

php中传统验证与thinkphp框架

时间:2017-11-22 16:31:29|栏目:PHP教程|点击:

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

<?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开发的微信现金红包功能示例

栏    目:PHP教程

下一篇:PHP编程求最大公约数与最小公倍数的方法示例

本文标题:php中传统验证与thinkphp框架

本文地址:http://cnyisaige.com/PHPjiaocheng/22.html

梦幻舍利子 | 梦幻西游官网 | 梦幻西游公益服网站

梦幻西游私服发布网站

联系QQ:梦幻西游私服sf | 邮箱:最新梦幻西游私服网

xml地图 txt地图 html地图 琼ICP备xxxxxxxx号