这个简单啊!
通城ssl适用于网站、小程序/APP、API接口等需要进行数据传输应用场景,ssl证书未来市场广阔!成为成都创新互联公司的ssl证书销售渠道,可以享受市场价格4-6折优惠!如果有意向欢迎电话联系或者加微信:13518219792(备注:SSL证书合作)期待与您的合作!
首页做个前台输入姓名和会员卡信息的页面,我做个简单的页面给你看
!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "
html xmlns="
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);
?
页面美化自己去搞!只能帮你这么多了
select
*
from
table
limit
0,10
从0开始,共10条
SQL的limit语法的如以下形式
SELECT
*
FROM
table
LIMIT
[offset,]
rows
|
rows
OFFSET
offset
当省略offset的时候,offset作为0处理,表示提取查询到的前rows条数据;
当offset=0时候,表示提取查询到的从offset开始的rows条数据;此时如果rows0表示提取查询到的从offset开始的所有数据
当offset0的时候,表示提取查询到的除出后rows条数据的所有数据,即剔除last
row-rows到last
rows之间的-rows条数据
另外,如果rows大于实际查询的数据条数,则取rows为实际查询的数据条数。
给个例子
import('ORG.Util.Page');
//艺术家查询
$sss=$_GET['textfield'];//这个就是你需要传的参数,你的条件,分页时候需要用到
if(isset($_POST['Submit'])($_POST['textfield'])||$sss!=NULL){//判断你是不是条件查询
$name=$_POST['textfield'];
$tag=$_POST['select'];
if($sss!=""){
$name=$_GET['textfield'];//
传的参数,分页时候用到
$tag=$_GET['select'];//你传的参数,分页时候用到
}
$nowPage = isset($_GET['p'])?$_GET['p']:1;
$count= $this-where("yishu_artist.".$tag." like "."'%$name%'")-count();
$Page = new Page($count,15);
$list = $this-where("yishu_artist.".$tag." like "."'%$name%'")-order('artistId desc')-page($nowPage.','.$Page-listRows)-select();
}
else{
$count= $this-count();
$Page = new Page($count,15);
$nowPage = isset($_GET['p'])?$_GET['p']:1;
$list = $this-order('create_time desc')-page($nowPage.','.$Page-listRows)-select();
}
$show = $Page-show();