php搜索查询数据库数据
发布网友
发布时间:2022-04-06 02:46
我来回答
共6个回答
热心网友
时间:2022-04-06 04:15
查看一下代码:
<?php
// 获取表单提交值
$student_id = intval(trim($_POST['student_id']));
// 页面表单 可以放单独的html文件中,如果放单独的html页面中 form 的action的地址要改成下面的PHP文件名
echo '<form action="" method="post">
<input type="text" name="student_id" value="{$student_id}"/>
<input type="submit" name="submit" value="查询"/>
</form>';
// 当有数据提交时
if ($student_id)
{
$con= mysql_connect("localhost","root","111") or die("连接错误");
mysql_select_db("examination",$con);
// 查询
$sql = "SELECT * FROM tablename WHERE student_id = $student_id ";
$res=mysql_query($sql);
$row=mysql_fetch_array($res);
// 输出
echo '学号:'.$row['student_id'].'<br>姓名:'.$row['name'].'<br>性别:'.$row['gender'].'<br>分数:'.$row['score'];
}
?>
热心网友
时间:2022-04-06 05:33
$where=$_POST['student_id'];
$sql ="SELECT * FROM 表名 WHERE student _id=$where";
热心网友
时间:2022-04-06 07:08
$student_id = $_POST['s_id']
$sql = "select * from 表名 where student_id = ".$student_id.""
热心网友
时间:2022-04-06 08:59
$sql = "SELECT * FROM 表名 WHERE student _id=1000001";
$res=mysql_query($sql);
$row=mysql_fetch_array($res)
热心网友
时间:2022-04-06 11:07
<?php
$con= mysql_connect("localhost","root","111") or die("连接错误");
mysql_select_db("examination",$con);
$res=mysql_query($sql);
$row=mysql_fetch_array($res)
$name=$row[name];
$gender=$row[gender];
$score=$row[score];
echo $name,$gender,$score;
?>
热心网友
时间:2022-04-06 13:32
<?php
// 获取表单提交值
$student_id = intval(trim($_POST['student_id']));
// 页面表单 可以放单独的html文件中,如果放单独的html页面中 form 的action的地址要改成下面的PHP文件名
echo '<form action="" method="post">
<input type="text" name="student_id" value="{$student_id}"/>
<input type="submit" name="submit" value="查询"/>
</form>';
// 当有数据提交时
if ($student_id)
{
$con= mysql_connect("localhost","root","111") or die("连接错误");
mysql_select_db("examination",$con);
// 查询
$sql = "SELECT * FROM tablename WHERE student_id = $student_id ";
$res=mysql_query($sql);
$row=mysql_fetch_array($res);
// 输出
echo '学号:'.$row['student_id'].'<br>姓名:'.$row['name'].'<br>性别:'.$row['gender'].'<br>分数:'.$row['score'];
}
?>追问您好,谢谢,我想问下
$row=mysql_fetch_array($res);这个有错么,为什么老提示我错误,
Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in D:\AppServ\www\examination\inquiry.php on line 19
可以我没发现错误啊