新手上路:php查询mysql数据库
发布网友
发布时间:2022-04-06 03:54
我来回答
共2个回答
热心网友
时间:2022-04-06 05:24
首先你需要form表单 或者是用jquery或者js来做都可以我就说最简单的,其实方法都是大同小异的
<form action='./tj.php' method='post'>
<!-- 这里复制你的所有的代码-->
</form>
tj.php的内容是这样 你看看对不对,tj.php必须放在与你的上面form表单的同一目录
<?php
$db_connect=mysql_connect($dbhost,$username,$userpass) or die("Unable to connect to the MySQL!");
//选择一个需要操作的数据库
mysql_select_db($dbdatabase,$db_connect);
$sel2 = $_POST['select2'];
$sel1 = $_POST['select1'];
//写你查询的sql
//执行就ok
?>追问在SQL查询中怎么引用$sel1,$sel2呢?
追答一般来说:你是这样的select 什么字段 from 那张表 where 字段1='$sel1' and 或者 or 字段2 = '$sel2' 但是具体你需要查找什么东西,返回什么样的结果 取决于你的sql语句的编写
热心网友
时间:2022-04-06 06:42
先把你要查询的东西接过来
$select1=$_post["select1"]
$select2=$_post["select2"]
然后在数据库里面查寻
数据库查询语句大概这样的 select * from table1 where a='$select1' and b='$select2';
这样的话就是查这张表中的a,b字段是否有内容了