多条件查询(php+mysql) 租房子例子

<body>
<?php

//多条件
$tiaojian2= " 2=2 ";
$attr2 = "";
//判断区域
if(!empty($_POST["area"]))
{
	$attr2 = $_POST["area"];
	$str2 = implode("‘,‘",$attr2);
	$tiaojian2 = "area in(‘{$str2}‘)";
}
//多条件
$tiaojian3= " 2=2 ";
$attr3 = "";
//判断房屋类型
if(!empty($_POST["renttype"]))
{
	$attr3 = $_POST["renttype"];
	$str3 = implode("‘,‘",$attr3);
	$tiaojian3 = "renttype in(‘{$str3}‘)";
}
//多条件
$tiaojian4= " 2=2 ";
$attr4 = "";
//判断租赁类型
if(!empty($_POST["houesetype"]))
{
	$attr4 = $_POST["houesetype"];
	$str4 = implode("‘,‘",$attr4);
	$tiaojian4 = "houesetype in(‘{$str4}‘)";
}

?>
<form action="sousuoyemian.php" method="post">

    <div>区  域:<input type="checkbox" onclick="quanxuanqu(this)"/>全选
       <?php
	          $tj=" and 1=1 ";
	   if(!empty($_POST["gjz"]) && $_POST["gjz"]!== "" )
	   {  $tj=" and kerword like ‘%{$_POST[‘gjz‘]}%‘ ";
		}
              include("fengzhuang.php");

               $db = new FENG();
               $s="select * from house";
               $a=$db->query($s);
               echo"<div>";
               foreach($a as $v)
               {
                 echo"<input type=‘checkbox‘  class=‘quyu‘ value=‘$v[2]‘ name=‘area[]‘/>{$v[2]}";
               }
               echo"</div>";
    ?>
    </div><br />

    <div>房屋类型:<input type="checkbox" onclick="quanxuanfang(this)"/>全选
      <?php

               echo"<div>";
               foreach($a as $v)
               {
                 echo"<input type=‘checkbox‘  class=‘fangwu‘ value=‘$v[5]‘ name=‘renttype[]‘/>{$v[5]}";
               }
               echo"</div>";
    ?>
    </div><br />

    <div>租赁类型:<input type="checkbox" onclick="quanxuanzu(this)"/>全选
      <?php
               echo"<div>";
               foreach($a as $v)
               {
                 echo"<input type=‘checkbox‘ class=‘zulin‘ value=‘$v[6]‘ name=‘houesetype[]‘/>{$v[6]}";
               }
               echo"</div>";
    ?>
    </div><br />

    <!-- 关键字查询 -->
    <div>关 键 字:<input type="text" name="gjz"/></div>
    <div><input type="submit" value="搜索" /></div>
</form>

   <table style="width:100%" border="1" cellpadding="0" cellspacing="0">
         <tr>

            <td>关键字</td>
            <td>区域</td>
            <td>使用面积</td>
            <td>租金</td>
            <td>租赁类型</td>
            <td>房屋类型</td>
         </tr>

          <?php

		   $sql="select * from house where  {$tiaojian2} and  {$tiaojian3} and {$tiaojian4} ".$tj;

		   $ar=$db->query($sql);

		   foreach($ar as $v)
		   {
			  echo"<tr>";
			  echo"<td>{$v[1]}</td><td>{$v[2]}</td><td>{$v[3]}</td><td>{$v[4]}</td><td>{$v[5]}</td><td>{$v[6]}</td>";
			  echo"</tr>";
			}

		  ?>

   </table>

<script type="text/javascript">

   function  quanxuanqu(qu)
   {
	   //找到下面所有的复选框
	   var  c=document.getElementsByClassName("quyu");
	   //遍历所有复选框,设置选中状态
	   for (var i=0; i<c.length; i++)
	   {
		   if(qu.checked)
		   {
			 c[i].setAttribute("checked","checked");
		   }
		   else
		    {
			 c[i].removeAttribute("checked");
		    }  

	   }

	} function  quanxuanfang(fang)
   {
	   //找到下面所有的复选框
	   var  c=document.getElementsByClassName("fangwu");
	   //遍历所有复选框,设置选中状态
	   for (var i=0; i<c.length; i++)
	   {
		   if(fang.checked)
		   {
			 c[i].setAttribute("checked","checked");
		   }
		   else
		    {
			 c[i].removeAttribute("checked");
		    }  

	   }

	}

	 function  quanxuanzu(zu)
   {
	   //找到下面所有的复选框
	   var  c=document.getElementsByClassName("zulin");
	   //遍历所有复选框,设置选中状态
	   for (var i=0; i<c.length; i++)
	   {
		   if(zu.checked)
		   {
			 c[i].setAttribute("checked","checked");
		   }
		   else
		    {
			 c[i].removeAttribute("checked");
		    }  

	   }

	}
  </script>

</body>

  

时间: 2024-11-05 11:54:42

多条件查询(php+mysql) 租房子例子的相关文章

MySQL —— 简单查询与按条件查询

在MySQL中从数据表中查询数据的基本语句时select语句.  select语句基本语法格式:      select 查询内容       from 表名      where 表达式      group by 字段名      having 表达式      order by 字段名      limit 记录数每一个select语句由多个子句组成. 1. from 表名 指定是从那张表中查询 2. select 查询内容 查询所有字段 select * from 表名:*通配符表示所有

PHP-----练习-------租房子-----增删改查,多条件查询

练习-------租房子-----增删改查,多条件 一 .题目要求: 二 .做法: [1]建立数据库 [2]封装类文件------DBDA.class.php 1 <?php 2 class DBDA 3 { 4 public $fuwuqi="localhost"; //服务器地址 5 public $yonghuming="root";//用户名 6 public $mima="";//密码 7 8 public $dbconnect;

复选框式查询 例题租房子

<!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-

数据访问 例子 租房子

<!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-

租房子查询

1.发布房屋信息 发布页面: <!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

mysql中条件查询加排序和索引的关系

跟一个朋友,不错公司的主管交流时,对于mysql中条件查询和排序时 与索引的关系 mysql> explain select * from article where title='希望光伏企业挺过2个月' o rder by id desc\\\\\\\\G *************************** 1. row *************************** id: 1 select_type: SIMPLE table: article type: index pos

Mysql动态多条件查询

动态多条件查询是一类经常遇到的问题. 在Mysql里面可以用语句简单的解决. SELECT * FROM product WHERE price = IF('{0}' = '', price, '{0}') AND name LIKE IF('{1}' = '', name, '%{1}%') 这里的price和name分别为产品表中的两个字段名,{}标志位是我们要将参数替换进去的地方,这样在查询页面只需调用SQL模板语句,并替换相应的参数即可.(假设用户没有过滤价格,则{0}为空,那么得到的S

mysql: 两个字段合并,字符时间转时间戳,别名字段作为where条件查询

有字段,a,b: a存的是:2016-10-10 b存的是:10:15:30 mysql将字段合并: concat(a, ' - ', b)  或者 concat(a, ' ', b) 字符时间转时间戳 unix_timestamp( concat(a, ' ', b) ) 别名字段作为where条件: 在MySQL中有个特殊的规定,即不允许使用列别名作为查询条件.比如有下面一个表: select     ID,     title,     concept,     conceptLength

mysql常用基础操作语法(五)--对数据的简单条件查询【命令行模式】

1.单条件查询:select 字段名 from tablename where 条件: 2.简单多条件查询,使用&&或者between and等: 3.is null和is not null查询,这里要注意null不是空字符串不是0: 4.in和not in查询,相当于是用or把in后边的集合元素连起来.注意如果in后边带的集合中存在null,那么不会影响结果,但not in后边集合中有null,就不会查处任何结果,not in也查不出null: 5.like模糊查询(不仅适用字符串):