租房界的php,php实现出租房数据管理及搜索页面
這篇文章主要為大家詳細介紹了php出租房數據管理及搜索頁面的相關資料,具有一定的參考價值,感興趣的小伙伴們可以參考一下
php數據訪問例子:租房信息管理,具體內容如下
1.數據庫建表
2. zufangzi.php
租房子
區域:全選
require "DBDA.class1.php";
$db = new DBDA();
$sqy = "select distinct area from house";//寫SQL語句,并去重
$aqy = $db->query($sqy);
foreach($aqy as $v)
{
echo "{$v[0]}";
}
?>
租賃類型:全選
$szl = "select distinct renttype from house";
$azl = $db->query($szl);
foreach($azl as $v)
{
echo "{$v[0]}";
}
?>
房屋類型:全選
$sfw = "select distinct housetype from house";
$afw = $db->query($sfw);
foreach($afw as $v)
{
echo "{$v[0]}";
}
?>
關鍵字:
| 關鍵字 | 區域 | 建筑面積 | 租金 | 租賃類型 | 房屋類型 |
$tj1 = " 1=1 ";
$tj2 = " 1=1 ";
$tj3 = " 1=1 ";
$tj4 = " 1=1 ";
if(!empty($_POST["qy"]))
{
$aqy = $_POST["qy"];
$sqy = implode("','",$aqy);
$tj1 = " area in ('{$sqy}') ";
}
if(!empty($_POST["zl"]))
{
$azl = $_POST["zl"];
$szl = implode("','",$azl);
$tj2 = " renttype in ('{$szl}') ";
}
if(!empty($_POST["fw"]))
{
$afw = $_POST["fw"];
$sfw = implode("','",$afw);
$tj3 = " housetype in ('{$sfw}') ";
}
if(!empty($_POST["key"]))
{
$k = $_POST["key"];
$tj4 = " keyword like '%{$k}%' ";
}
$sql = "select * from house where {$tj1} and {$tj2} and {$tj3} and {$tj4}";
echo $sql;
$arr = $db->query($sql);
foreach($arr as $v)
{
echo "
{$v[1]}{$v[2]}{$v[3]}{$v[4]}{$v[5]}{$v[6]}";}
?>
function quanxuan(qx,a)
{
//找到該全選按鈕對應的checkbox列表
var ck = document.getElementsByClassName(a);
//找全選按鈕選中狀態
if(qx.checked)
{
for(var i=0;i
{
ck[i].setAttribute("checked","checked");
}
}
else
{
for(var i=0;i
{
ck[i].removeAttribute("checked");
}
}
}
總結
以上是生活随笔為你收集整理的租房界的php,php实现出租房数据管理及搜索页面的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: php get raw,file_get
- 下一篇: centos7.4编译mysql5.6,