然后比如你的数据库位置是本地localhost
数据库用户名是root
数据库密码是123456
数据库名是mydb
数据库里有个表mytab
有3个字段
id(主键) name sno
1 张三 123
2 李四 456
然后在项目根目录,新建一个文件:index.php
<?php
//连接数据库
$con=mysqli_connect("localhost","root","123456","mydb")
//SQL语句
$sql="select * from mytab"
//执行SQL语句,结果保存到$arr
$obj=mysqli_query($con,$sql)
$arr=mysqli_num_rows($result)
?>
<html>
<head>
<meta http-equiv="Content-Type" content="text/htmlcharset=UTF-8">
<title>实现最简单的php网页+mysql查询功能</title>
</head>
<body>
<?php
echo "<pre>"
print_r($obj)
?>
</body>
</html>
之后就能够看到结果了
或者叫,分词检索数据库$res
=
mysql_query("select
*
from
peter
where
id
like
'%中草药%'
and
'%6%'")
//这样写是报错的;
$res
=
mysql_query("select
*
from
peter
where
id
like
'%中草药%'
or
'%6%'")
//而这样写是正确的;奇怪~
$res
=
mysql_query("select
*
from
peter
where
id
like
'%中草药%'
and
id
like
'%6%'")
//这样写是正确的;
$res
=
mysql_query("select
*
from
peter
where
id
like
'%中草药%'
or
id
like
'%6%'")
//这样写都是正确的;
以上就是小编为大家带来的php
mysql
like
实现多关键词搜索的方法全部内容了,希望大家多多支持脚本之家~
<?php$host_name="localhost" //服务器名
$host_user="root" //连接服务器的用户名
$host_pass="123456" //连接服务器的密码
$db_name="" //服务器上的可用数据库
$my_conn=mysql_connect($host_name,$host_user,$host_pass) //连接服务器
mysql_select_db($db_name,$my_conn) //选择 *** 作的数据库
mysql_query("SET NAMES utf-s") //设置编码
$sql="select content from sheet where id=0 "//mysql语句
//从sheet表中查询id=0的content的值
$row = mysql_fetch_array(mysql_query($sql,$my_conn))//从mysql返回的结果中提取一 //行
?>
这是一段典型的使用php连接mysql并查询数据的代码
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)