欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

PHP MYSQL实现登陆和模糊查询两大功能,mysql模糊查询_PHP教程

程序员文章站 2022-06-12 16:22:33
...

PHP MYSQL实现登陆和模糊查询两大功能,mysql模糊查询

本文使用的软件版本如下:PHP版本 5.5.12;MYSQL版本 5.6.17;Apache 2.4.9 用的wampserver
一、PHPMYSQL实现登陆
一共含有两个文件:login.phplogincheck.php;
表单代码:


Yonghu:
Mima:
zhuce:

后台处理代码:

alert('请输入用户名或密码!'); history.go(-1);";

          }

          else

          {

              $link= mysqli_connect('localhost', 'sa', '123456','account');//链接数据库

              mysqli_select_db($link,"account");

              mysqli_query($link,'setname utf8');

              $sql= "selectuser from zhanghu where user = '$_POST[username]'";

              $result=mysqli_query($link,$sql)or die("Failed".mysql_error());

              if($num=mysqli_num_rows($result))

              {

                   $row= mysqli_fetch_array($result);    //将数据以索引方式储存在数组中

                   echo"welcome ";

                   echo$row[0];

              }

              else

              {

                   echo"";

              }

          }

     }

     else

     {

          echo"";

     }

 

?>

Account数据库内容:

PHP MYSQL实现登陆和模糊查询两大功能,mysql模糊查询_PHP教程

二、PHPMYSQL实现模糊查询

查询数据库(只给PHP的代码):

connect("localhost","sa", "123456");

     if(mysqli_connect_errno()) {

          printf("Failllllll:%s\n", mysqli_connect_error());

          exit();

     }

     $mysqli->select_db("booklib");  

     $mysqli->query("SETNAMES utf8");   

     $rsbooks= $mysqli->query("select * from books where Name like'%$_POST[bookname]%'");

  $row_rsbooks = $rsbooks->fetch_assoc();

  $totalRows_rsbooks = $rsbooks->num_rows;    

?> Totel

books;

fetch_assoc()); ?>
Name ISBN Store Do
rent
close(); $mysqli->close(); ?>

数据库表的内容如下:

PHP MYSQL实现登陆和模糊查询两大功能,mysql模糊查询_PHP教程

查询:

PHP MYSQL实现登陆和模糊查询两大功能,mysql模糊查询_PHP教程

结果:

PHP MYSQL实现登陆和模糊查询两大功能,mysql模糊查询_PHP教程

以上就是本文的全部内容,希望对大家学习php程序设计有所帮助。

您可能感兴趣的文章:

  • 两大步骤教您开启MySQL 数据库远程登陆帐号的方法
  • MySQL单表多关键字模糊查询的实现方法
  • PHP+MYSQL会员系统的登陆即权限判断实现代码
  • 一个简单的网页密码登陆php代码
  • mysql增加新用户无法登陆解决方法
  • MySql like模糊查询通配符使用详细介绍
  • PHP登陆后跳转到登陆前页面实现思路及代码
  • php中session退出登陆问题
  • mysql中模糊查询的四种用法介绍
  • thinkphp实现like模糊查询实例

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/1099081.htmlTechArticlePHP MYSQL实现登陆和模糊查询两大功能,mysql模糊查询 本文使用的软件版本如下:PHP版本 5.5.12;MYSQL版本 5.6.17;Apache 2.4.9 用的wampserver 一、...