PHP如何查询数据并显示结果。

功能大概是这样。通过在初始网页输入姓名或者会员卡信息,点击查询,然后查询数据库,输出表中的相应数据。表名叫:kh_customer... 功能大概是这样。通过在初始网页输入姓名或者会员卡信息,点击查询,然后查询数据库,输出表中的相应数据。
表名叫:kh_customer
展开
 我来答
百度网友12293b2
2015-11-25 · TA获得超过215个赞
知道答主
回答量:173
采纳率:0%
帮助的人:50.7万
展开全部

这个简单啊!

首页做个前台输入姓名和会员卡信息的页面,我做个简单的页面给你看

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>会员查询系统</title>
</head>

<body>
<form id="form1" name="form1" method="post" action="test.php">
  <p>
    <label for="name"></label>
    <input type="text" name="name" id="name" />
  </p>
  <p>
    <label for="vipid"></label>
    <input type="text" name="vipid" id="vipid" />
  </p>
  <p>
    <input type="submit" name="button" id="button" value="查询" />
  </p>
</form>
</body>
</html>
然后我给你一个test.php的文件代码:
<?php
$name    =    trim($_POST['name']);
$vipid    =    trim($_POST['vipid']);
$con = mysql_connect("127.0.0.1","数据库用户名","数据库密码");
if (!$con)
  {
  die('Could not connect: ' . mysql_error());
  }
$a    =    mysql_select_db("数据库名字", $con);
$sql    =    "select * from kh_customer where name = '$name' and vipid = '$vipid'";
$result = mysql_query($sql);
while($row = mysql_fetch_array($result))
  {
  echo $row['name'] . " " . $row['data'];
  echo "<br />";
  }
mysql_close($con);
?>

页面美化自己去搞!只能帮你这么多了

推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式