php酒店数据库表,php支持的数据库
php如何查询数据库表中的数据并显示
这个简单啊!
创新互联建站主营武山网站建设的网络公司,主营网站建设方案,重庆APP开发公司,武山h5重庆小程序开发搭建,武山网站营销推广欢迎武山等地区企业咨询
首页做个前台输入姓名和会员卡信息的页面,我做个简单的页面给你看
!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);
?
页面美化自己去搞!只能帮你这么多了
PHP 酒店系统中的每天房价数据库设计
设计
1房间基本信息表
2.关联价格表(房间id,当日的价格,时间)
关于PHP酒店预订,我制作了一个html和php,在html中填写信息点击提交,后进入php文件中
这个显然是把别人提交的保存到数据库中,然后通过增查删改来操作提交的信息。
php中MySQL怎样打开和关闭数据库表
用PHP打开数据库的表,分为:先连接数据库,然后选择 MySQL 数据库,查询数据库,最后关闭数据库:
1. 连接数据库:$link = mysql_connect("localhost", "mysql_user", "mysql_password") print ("Connected successfully");
2. 选择数据库: mysql_select_db($link, 'your_Database');
3. 查询数据库: mysql_query($your_query);
4. 关闭数据库:mysql_close($link);
分享标题:php酒店数据库表,php支持的数据库
浏览地址:http://pwwzsj.com/article/hoghij.html