本文目录一览:
- 1、怎样用php+mysql 做一个查询的网页
- 2、我要用户PHP和数据库做一个成绩查询系统。请问我应该怎么做啊?不要太复杂
- 3、怎么在网页上用PHP做个搜索功能?
- 4、php怎么做查询
- 5、PHP查询功能如何实现
怎样用php+mysql 做一个查询的网页
首先搭建一个PHP环境,我用的wamp
然后比如你的数据库位置是本地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/html; charset=UTF-8"
title实现最简单的php网页+mysql查询功能/title
/head
body
?php
echo "pre";
print_r($obj);
?
/body
/html
之后就能够看到结果了
我要用户PHP和数据库做一个成绩查询系统。请问我应该怎么做啊?不要太复杂
设计思路么?
首先你需要设计数据库,成绩查询需要设计哪些表,最简单的就是这几三张表:学生表,课程表,成绩表,然后设计每个表的字段和关联关系
然后写代码,对数据库进行CURD,这种小系统完全不用考虑架构,数据量等,所以很简单的,数据库+PHP服务端+web前端 最多1天就差不多能做好了
怎么在网页上用PHP做个搜索功能?
通过from表单,将查询的关键词,通过 like 跟数据进行模糊查询对比\x0d\x0a从topics表中查询字段subject与传进来的参数'$_POST['topic']进行比较模糊查询\x0d\x0a设subject字段数据为:数学,英语,物理,化学,英文\x0d\x0a$subject=$_POST['topic']; \x0d\x0a$sql = "select * from topics where subject like '%" .$subject. "%'";\x0d\x0a$result = mysql_query($sql);\x0d\x0a若从表单提交的‘topic’值为“学”,得到的结果将是:数学,化学\x0d\x0a多个字段匹配查询:\x0d\x0a$sql = "select id,subject from topics where (id like '%" .$id. "%') or (name like '%" .$name. "%') or (subject like '%" .$subject. "%') order by id desc";\x0d\x0a结果依据字段id的顺序
php怎么做查询
form action="" method="post"
名字:input type="text" name="text"/
input type="submit" name="submit" value="查询"/
form
hr
?php$conn = mysql_connect(localhost,root,123456)
or die('没有连接');
$db = mysql_select_db(test,$conn) or die('没有数据库');
mysql_query("set names utf8");
if(isset($_POST['submit'])){
$name=$_POST['text'];
$sql="select * from ttt where name=".$name."";$tt=mysql_query($sql);if($tt){
$row = mysql_fetch_assoc($tt);
echo "名字:".$row[name]."年龄:".$row[age]."/br";
}else{
return false;
}
}
其中:我的数据库帐号是root 密码是123456 数据库是test 表名是ttt 表中有三个字段 分别是id(主键 自增 ) name age 主要实现功能是你输入一个名字 点击查询它会把这个人的信息就是名字和年龄显示出来
PHP查询功能如何实现
//获得连接
$db = mysql_connect("localhost", "root", "root") or die(mysql_error());
//echo "Connected to MySQLbr/";
//连接数据库
mysql_select_db("test") or die(mysql_error());
//echo "Connected to Database";
$result = mysql_query("select * from books",$db);
//循环遍历
while ($myrow = mysql_fetch_row($result)){
print_r($myrow) ;
}