php如何把Mysql数据库表特定查询出来的数据显示在html页面的 5
<divclass="back"><formaction="select.php"method="post"><br/><span>查询订单:</span><inputt...
<div class="back">
<form action="select.php" method="post">
<br />
<span>查询订单:</span>
<input type="text" id="tel" name="tel" placeholder="顾客电话" />
<input type="submit" id="back-sure" value="确定查询" />
</form>
</div>
请问如何用PHP实现查询menagerie库里的orderlist表的数据(当表单中的tel的值等于orderlist的tel的值) 展开
<form action="select.php" method="post">
<br />
<span>查询订单:</span>
<input type="text" id="tel" name="tel" placeholder="顾客电话" />
<input type="submit" id="back-sure" value="确定查询" />
</form>
</div>
请问如何用PHP实现查询menagerie库里的orderlist表的数据(当表单中的tel的值等于orderlist的tel的值) 展开
1个回答
展开全部
<?php
$conn=mysql_connect('localhost','root','')or die ("数据库连接失败");
mysql_select_db('menagerie',$conn);
mysql_query("set names utf8");
$sql="select * from orderlist where tel=".$_POST[tel]."";
$resouce=mysql_query($sql);
while ($row=mysql_fetch_array($resouce)) {
echo $row;
echo "<br>";
}
?>
$conn=mysql_connect('localhost','root','')or die ("数据库连接失败");
mysql_select_db('menagerie',$conn);
mysql_query("set names utf8");
$sql="select * from orderlist where tel=".$_POST[tel]."";
$resouce=mysql_query($sql);
while ($row=mysql_fetch_array($resouce)) {
echo $row;
echo "<br>";
}
?>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询