MMCT TEAM
Server IP : 111.118.215.189  /  Your IP : 3.129.71.97
Web Server : Apache
System : Linux md-in-83.webhostbox.net 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64
User : a1673wkz ( 2475)
PHP Version : 8.2.25
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON
Directory (0750) :  /home1/a1673wkz/propstonerealty.com/

[  Home  ][  C0mmand  ][  Upload File  ]

Current File : /home1/a1673wkz/propstonerealty.com/search.php
<!DOCTYPE html>
<html lang="zxx">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
    <meta http-equiv="x-ua-compatible" content="ie=edge">
    <meta name="description" content="Propopstone Realty">
    <meta name="author" content="">
    <title>Propstone Realty</title>
    <!-- FAVICON -->
    <link rel="shortcut icon" type="image/x-icon" href="images/logo/favicon.ico">
    <link rel="stylesheet" href="css/jquery-ui.css">
    <!-- GOOGLE FONTS -->
    <link href="https://fonts.googleapis.com/css?family=Lato:300,300i,400,400i%7CMontserrat:600,800,%20700" rel="stylesheet">
    <!-- FONT AWESOME -->
    <link rel="stylesheet" href="css/fontawesome-all.min.css">
    <link rel="stylesheet" href="css/fontawesome-5-all.min.css">
    <link rel="stylesheet" href="css/font-awesome.min.css">
    <!-- ARCHIVES CSS -->
    <link rel="stylesheet" href="css/search.css">
    <link rel="stylesheet" href="css/animate.css">
    <link rel="stylesheet" href="css/aos.css">
    <link rel="stylesheet" href="css/aos2.css">
    <link rel="stylesheet" href="css/magnific-popup.css">
    <link rel="stylesheet" href="css/lightcase.css">
    <link rel="stylesheet" href="css/owl.carousel.min.css">
    <link rel="stylesheet" href="css/bootstrap.min.css">
    <link rel="stylesheet" href="css/menu.css">
    <link rel="stylesheet" href="css/nice-select.css">
    <link rel="stylesheet" href="css/slick.css">
    <link rel="stylesheet" href="css/styles.css">
    <link rel="stylesheet" id="color" href="css/colors/dark-orange.css">

</head>

<body class="inner-pages hd-white about">
    <!-- Wrapper -->
    <div id="wrapper">
        <!-- Header Start
        ================================================== -->
        <?php include("header.php"); ?>

        <div class="clearfix"></div>
        <!-- Header End -->

        <section class="headings">
            <div class="text-heading text-center">
                <div class="container">
                    <h1>Our Properties</h1>
                    <h2><a href="index.php">Home </a> &nbsp;/&nbsp; Properties</h2>
                </div>
            </div>
        </section>

        <!-- START SECTION PROPERTIES LISTING -->
        <section class="properties-right featured portfolio blog pt-5">
            <div class="container">
                <section class="headings-2 pt-0 pb-55">
                    <div class="pro-wrapper">
                        <div class="detail-wrapper-body">
                            <div class="listing-title-bar">
                                <div class="text-heading text-left">
                                    <p class="pb-2"><a href="index.php">Home </a> &nbsp;/&nbsp; <span>Our
                                            Properties</span>
                                    </p>
                                </div>
                                <h3>Our Properties</h3>
                            </div>
                        </div>
                    </div>
                </section>
                <div class="row">
                    <div class="col-lg-12 col-md-12 blog-pots">
                        <div class="row">
                            <?php

                            $min = $_GET['min'];
                            $max = $_GET['max'];
                            $pro_cat = $_GET['pro_cat'];
                            if(!empty($min))
                            {
                                if(empty($_GET['max']))
                                {
                                    $max=$_GET['min'];
                                }
                                     $fetp = $obj->fetch("SELECT * FROM property WHERE  pro_type='$pro_cat' AND min_price BETWEEN '$min' AND '$max'");
                                
                            }
                            else
                            {
                                 $fetp = $obj->fetch("SELECT * FROM property WHERE pro_type='$pro_cat'");
                            }
                            // print_r($fetp);
                            foreach ($fetp as $val)
                            {
                                $pro_type_cnt = count((array) $_GET['pro_type']);
                                for ($h = 0; $h < $pro_type_cnt; $h++) 
                                {
                                    $pro_type = $_GET['pro_type'][$h];
                                    $pro_type_db = $val['pro_cat'];
                                    if ($pro_type == $pro_type_db) 
                                    {
                                        $loc_cnt = count((array) $_GET['location']);
                                        for ($i = 0; $i < $loc_cnt; $i++) 
                                        {
                                            $location = $_GET['location'][$i];
                                            $location_db = $val['location'];
                                            if ($location == $location_db) 
                                            {
                                                if (!empty($_GET['sublocation'])) 
                                                {
                                                    $subloc_cnt = count((array) $_GET['sublocation']);
                                                    for ($j = 0; $j < $subloc_cnt; $j++) 
                                                    {
                                                        $sublocation = $_GET['sublocation'][$j];
                                                        $sublocation_db = $val['sub_location'];
                                                        if ($sublocation == $sublocation_db) 
                                                        {
                                                           // echo "rewrewr";

                                                            $un_img = unserialize($val['image']);
                                                            $unstatus = unserialize($val['status']);
                                                            //print_r($unstatus);
                                                            if (!empty($_GET['status'])) 
                                                            {
                                                                $status = $_GET['status'];
                                                                $unst_cnt = count((array) $status);
                                                                for ($f = 0; $f < $unst_cnt; $f++)
                                                                {
                                                                    if (in_array($status[$f], $unstatus)) 
                                                                    {
                                                                        if (!empty($_GET['bhk']))
                                                                        {
                                                                            $unn_bhk = unserialize($val['bhk']);
                                                                            $gn_bhk = $_GET['bhk'];
                                                                            $unbhn_cnt = count((array) $gn_bhk);
                                                                            for ($y = 0; $y < $unbhn_cnt; $y++) 
                                                                            {
                                                                                if (in_array($gn_bhk[$y], $unn_bhk)) 
                                                                                {
                                                                    ?>
                                                                                    <div class="item col-lg-4 col-md-6 col-xs-12 landscapes sale">
                                                                                        <div class="project-single">
                                                                                            <div class="project-inner project-head">
                                                                                                <div class="project-bottom">
                                                                                                    <h4><a href="single-property.php?property=<?php echo base64_encode($val['id']) ?>">View Property</a></h4>
                                                                                                </div>
                                                                                                <div class="homes">
                                                                                                    <!-- homes img -->
                                                                                                    <a href="single-property.php?property=<?php echo base64_encode($val['id']) ?>" class="homes-img">
                                                                                                        <div class="homes-tag button alt featured"><?php echo $val['pro_type']; ?></div>
                                                                                                        <div class="homes-tag button alt sale"><?php echo $status[$f] ?></div>
            
                                                                                                        <img src="Admin/<?php echo $un_img[0]; ?>" alt="home-1" class="img-responsive">
                                                                                                    </a>
                                                                                                </div>
                                                                                            </div>
                                                                                            <!-- homes content -->
                                                                                            <div class="homes-content">
                                                                                                <!-- homes address -->
                                                                                                <h3><a href="single-property.php?property=<?php echo base64_encode($val['id']) ?>"><?php echo $val['pro_name']; ?></a></h3>
                                                                                                <p class="homes-address mb-3">
                                                                                                    <a href="single-property.php?property=<?php echo base64_encode($val['id']) ?>">
                                                                                                        <i class="fa fa-map-marker"></i><span><?php echo $val['pro_full_ads']; ?></span>
                                                                                                    </a>
                                                                                                </p>
                                                                                                <!-- homes List -->
                                                                                                <ul class="homes-list clearfix">
                                                                                                    <li>
                                                                                                        <i class="fa fa-home" aria-hidden="true"></i>
                                                                                                        <span><?php
                                                                                                                $bhk_id = unserialize($val['bhk']);
                                                                                                                $cont = count((array) $bhk_id);
                                                                                                                //print_r($bhk_id);
                                                                                                                for ($r = 0; $r < $cont; $r++) {
                                                                                                                    if ($r == 0) {
                                                                                                                        echo $bhk_id[$r];
                                                                                                                    } else {
                                                                                                                        echo ',' . $bhk_id[$r];
                                                                                                                    }
                                                                                                                }
                                                                                                                ?> BHK</span>
                                                                                                    </li>
            
            
            
                                                                                                </ul>
                                                                                                <!-- Price -->
                                                                                                <div class="price-properties">
                                                                                                    <h3 class="title mt-3">
                                                                                                        <a href="single-property.php?property=<?php echo base64_encode($val['id']) ?>">₹ <?php echo $val['min_price'] ?> - <?php echo $val['max_price'] ?></a>
                                                                                                    </h3>
            
                                                                                                    <div class="right_button">
                                                                                                        <a href="single-property.php?property=<?php echo base64_encode($val['id']) ?>" class="info_button">Get Info</a>
                                                                                                    </div>
                                                                                                </div>
            
                                                                                            </div>
                                                                                        </div>
                                                                                    </div>
                                                                        <?php }}}else{ ?>
                                                                            
                                                                        <div class="item col-lg-4 col-md-6 col-xs-12 landscapes sale">
                                                                                        <div class="project-single">
                                                                                            <div class="project-inner project-head">
                                                                                                <div class="project-bottom">
                                                                                                    <h4><a href="single-property.php?property=<?php echo base64_encode($val['id']) ?>">View Property</a></h4>
                                                                                                </div>
                                                                                                <div class="homes">
                                                                                                    <!-- homes img -->
                                                                                                    <a href="single-property.php?property=<?php echo base64_encode($val['id']) ?>" class="homes-img">
                                                                                                        <div class="homes-tag button alt featured"><?php echo $val['pro_type']; ?></div>
                                                                                                        <div class="homes-tag button alt sale"><?php echo $status[$f] ?></div>
            
                                                                                                        <img src="Admin/<?php echo $un_img[0]; ?>" alt="home-1" class="img-responsive">
                                                                                                    </a>
                                                                                                </div>
                                                                                            </div>
                                                                                            <!-- homes content -->
                                                                                            <div class="homes-content">
                                                                                                <!-- homes address -->
                                                                                                <h3><a href="single-property.php?property=<?php echo base64_encode($val['id']) ?>"><?php echo $val['pro_name']; ?></a></h3>
                                                                                                <p class="homes-address mb-3">
                                                                                                    <a href="single-property.php?property=<?php echo base64_encode($val['id']) ?>">
                                                                                                        <i class="fa fa-map-marker"></i><span><?php echo $val['pro_full_ads']; ?></span>
                                                                                                    </a>
                                                                                                </p>
                                                                                                <!-- homes List -->
                                                                                                <ul class="homes-list clearfix">
                                                                                                    <li>
                                                                                                        <i class="fa fa-home" aria-hidden="true"></i>
                                                                                                        <span><?php
                                                                                                                $bhk_id = unserialize($val['bhk']);
                                                                                                                $cont = count((array) $bhk_id);
                                                                                                                //print_r($bhk_id);
                                                                                                                for ($r = 0; $r < $cont; $r++) {
                                                                                                                    if ($r == 0) {
                                                                                                                        echo $bhk_id[$r];
                                                                                                                    } else {
                                                                                                                        echo ',' . $bhk_id[$r];
                                                                                                                    }
                                                                                                                }
                                                                                                                ?> BHK</span>
                                                                                                    </li>
            
            
            
                                                                                                </ul>
                                                                                                <!-- Price -->
                                                                                                <div class="price-properties">
                                                                                                    <h3 class="title mt-3">
                                                                                                        <a href="single-property.php?property=<?php echo base64_encode($val['id']) ?>">₹ <?php echo $val['min_price'] ?> - <?php echo $val['max_price'] ?></a>
                                                                                                    </h3>
            
                                                                                                    <div class="right_button">
                                                                                                        <a href="single-property.php?property=<?php echo base64_encode($val['id']) ?>" class="info_button">Get Info</a>
                                                                                                    </div>
                                                                                                </div>
            
                                                                                            </div>
                                                                                        </div>
                                                                                    </div>
                                                                        <?php } ?>
                                                                <?php
                                                                    }
                                                                }
                                                            } 
                                                            else if (!empty($_GET['bhk']))
                                                                {
                                                                        $un_bhk = unserialize($val['bhk']);
                                                                        $g_bhk = $_GET['bhk'];
                                                                        $unbh_cnt = count((array) $g_bhk);
                                                                        for ($x = 0; $x < $unbh_cnt; $x++) 
                                                                        {
                                                                            if (in_array($g_bhk[$x], $un_bhk)) 
                                                                            {
                                                                               // echo"ddf";
                                                                            ?>
                                                                                <div class="item col-lg-4 col-md-6 col-xs-12 landscapes sale">
                                                                                    <div class="project-single">
                                                                                        <div class="project-inner project-head">
                                                                                            <div class="project-bottom">
                                                                                                <h4><a href="single-property.php?property=<?php echo base64_encode($val['id']) ?>">View Property</a></h4>
                                                                                            </div>
                                                                                            <div class="homes">
                                                                                                <!-- homes img -->
                                                                                                <a href="single-property.php?property=<?php echo base64_encode($val['id']) ?>" class="homes-img">
                                                                                                    <div class="homes-tag button alt featured"><?php echo $val['pro_type']; ?></div>
                                                                                                    <!--<div class="homes-tag button alt sale">For Sale</div>-->
                
                                                                                                    <img src="Admin/<?php echo $un_img[0]; ?>" alt="home-1" class="img-responsive">
                                                                                                </a>
                                                                                            </div>
                                                                                        </div>
                                                                                        <!-- homes content -->
                                                                                        <div class="homes-content">
                                                                                            <!-- homes address -->
                                                                                            <h3><a href="single-property.php?property=<?php echo base64_encode($val['id']) ?>"><?php echo $val['pro_name']; ?></a></h3>
                                                                                            <p class="homes-address mb-3">
                                                                                                <a href="single-property.php?property=<?php echo base64_encode($val['id']) ?>">
                                                                                                    <i class="fa fa-map-marker"></i><span><?php echo $val['pro_full_ads']; ?></span>
                                                                                                </a>
                                                                                            </p>
                                                                                            <!-- homes List -->
                                                                                            <ul class="homes-list clearfix">
                                                                                                <li>
                                                                                                    <i class="fa fa-home" aria-hidden="true"></i>
                                                                                                    <span><?php
                                                                                                            $bhk_id = unserialize($val['bhk']);
                                                                                                            $cont = count((array) $bhk_id);
                                                                                                            //print_r($bhk_id);
                                                                                                            for ($r = 0; $r < $cont; $r++) {
                                                                                                                if ($r == 0) {
                                                                                                                    echo $bhk_id[$r];
                                                                                                                } else {
                                                                                                                    echo ',' . $bhk_id[$r];
                                                                                                                }
                                                                                                            }
                                                                                                            ?> BHK</span>
                                                                                                </li>
                
                
                
                                                                                            </ul>
                                                                                            <!-- Price -->
                                                                                            <div class="price-properties">
                                                                                                <h3 class="title mt-3">
                                                                                                    <a href="single-property.php?property=<?php echo base64_encode($val['id']) ?>">₹ <?php echo $val['min_price'] ?> - <?php echo $val['max_price'] ?></a>
                                                                                                </h3>
                
                                                                                                <div class="right_button">
                                                                                                    <a href="single-property.php?property=<?php echo base64_encode($val['id']) ?>" class="info_button">Get Info</a>
                                                                                                </div>
                                                                                            </div>
                
                                                                                        </div>
                                                                                    </div>
                                                                                </div>
                                                                            <?php }
                                                                        }
                                                                }
                                                                else
                                                                {
                                                                ?>
                                                                         <div class="item col-lg-4 col-md-6 col-xs-12 landscapes sale">
                                                                            <div class="project-single">
                                                                                <div class="project-inner project-head">
                                                                                    <div class="project-bottom">
                                                                                        <h4><a href="single-property.php?property=<?php echo base64_encode($val['id']) ?>">View Property</a></h4>
                                                                                    </div>
                                                                                    <div class="homes">
                                                                                        <!-- homes img -->
                                                                                        <a href="single-property.php?property=<?php echo base64_encode($val['id']) ?>" class="homes-img">
                                                                                            <div class="homes-tag button alt featured"><?php echo $val['pro_type']; ?></div>
                                                                                            <!--<div class="homes-tag button alt sale">For Sale</div>-->
        
                                                                                            <img src="Admin/<?php echo $un_img[0]; ?>" alt="home-1" class="img-responsive">
                                                                                        </a>
                                                                                    </div>
                                                                                </div>
                                                                                <!-- homes content -->
                                                                                <div class="homes-content">
                                                                                    <!-- homes address -->
                                                                                    <h3><a href="single-property.php?property=<?php echo base64_encode($val['id']) ?>"><?php echo $val['pro_name']; ?></a></h3>
                                                                                    <p class="homes-address mb-3">
                                                                                        <a href="single-property.php?property=<?php echo base64_encode($val['id']) ?>">
                                                                                            <i class="fa fa-map-marker"></i><span><?php echo $val['pro_full_ads']; ?></span>
                                                                                        </a>
                                                                                    </p>
                                                                                    <!-- homes List -->
                                                                                    <ul class="homes-list clearfix">
                                                                                        <li>
                                                                                            <i class="fa fa-home" aria-hidden="true"></i>
                                                                                            <span><?php
                                                                                                    $bhk_id = unserialize($val['bhk']);
                                                                                                    $cont = count((array) $bhk_id);
                                                                                                    //print_r($bhk_id);
                                                                                                    for ($r = 0; $r < $cont; $r++) {
                                                                                                        if ($r == 0) {
                                                                                                            echo $bhk_id[$r];
                                                                                                        } else {
                                                                                                            echo ',' . $bhk_id[$r];
                                                                                                        }
                                                                                                    }
                                                                                                    ?> BHK</span>
                                                                                        </li>
        
        
        
                                                                                    </ul>
                                                                                    <!-- Price -->
                                                                                    <div class="price-properties">
                                                                                        <h3 class="title mt-3">
                                                                                            <a href="single-property.php?property=<?php echo base64_encode($val['id']) ?>">₹ <?php echo $val['min_price'] ?> - <?php echo $val['max_price'] ?></a>
                                                                                        </h3>
        
                                                                                        <div class="right_button">
                                                                                            <a href="single-property.php?property=<?php echo base64_encode($val['id']) ?>" class="info_button">Get Info</a>
                                                                                        </div>
                                                                                    </div>
        
                                                                                </div>
                                                                            </div>
                                                                        </div>

                                                                <?php }
                                                            ?>
                                                            <?php }
                                                    }
                                                }
                                                else
                                                {
                                                    $un_img = unserialize($val['image']);
                                                    $unstatus = unserialize($val['status']);
                                                    if (!empty($_GET['status'])) 
                                                    {
                                                        $status = $_GET['status'];
                                                        $unst_cnt = count((array) $status);
                                                        for ($f = 0; $f < $unst_cnt; $f++) 
                                                        {
                                                            if (in_array($status[$f], $unstatus))
                                                            {
                                                                
                                                                
                                                                
                                                                
                                                                
                                                                
                                                                
                                                                
                                                                
                                                                if (!empty($_GET['bhk']))
                                                                        {
                                                                            $unn_bhk = unserialize($val['bhk']);
                                                                            $gn_bhk = $_GET['bhk'];
                                                                            $unbhn_cnt = count((array) $gn_bhk);
                                                                            for ($y = 0; $y < $unbhn_cnt; $y++) 
                                                                            {
                                                                                if (in_array($gn_bhk[$y], $unn_bhk)) 
                                                                                {
                                                                    ?>
                                                                                    <div class="item col-lg-4 col-md-6 col-xs-12 landscapes sale">
                                                                                        <div class="project-single">
                                                                                            <div class="project-inner project-head">
                                                                                                <div class="project-bottom">
                                                                                                    <h4><a href="single-property.php?property=<?php echo base64_encode($val['id']) ?>">View Property</a></h4>
                                                                                                </div>
                                                                                                <div class="homes">
                                                                                                    <!-- homes img -->
                                                                                                    <a href="single-property.php?property=<?php echo base64_encode($val['id']) ?>" class="homes-img">
                                                                                                        <div class="homes-tag button alt featured"><?php echo $val['pro_type']; ?></div>
                                                                                                        <div class="homes-tag button alt sale"><?php echo $status[$f] ?></div>
            
                                                                                                        <img src="Admin/<?php echo $un_img[0]; ?>" alt="home-1" class="img-responsive">
                                                                                                    </a>
                                                                                                </div>
                                                                                            </div>
                                                                                            <!-- homes content -->
                                                                                            <div class="homes-content">
                                                                                                <!-- homes address -->
                                                                                                <h3><a href="single-property.php?property=<?php echo base64_encode($val['id']) ?>"><?php echo $val['pro_name']; ?></a></h3>
                                                                                                <p class="homes-address mb-3">
                                                                                                    <a href="single-property.php?property=<?php echo base64_encode($val['id']) ?>">
                                                                                                        <i class="fa fa-map-marker"></i><span><?php echo $val['pro_full_ads']; ?></span>
                                                                                                    </a>
                                                                                                </p>
                                                                                                <!-- homes List -->
                                                                                                <ul class="homes-list clearfix">
                                                                                                    <li>
                                                                                                        <i class="fa fa-home" aria-hidden="true"></i>
                                                                                                        <span><?php
                                                                                                                $bhk_id = unserialize($val['bhk']);
                                                                                                                $cont = count((array) $bhk_id);
                                                                                                                //print_r($bhk_id);
                                                                                                                for ($r = 0; $r < $cont; $r++) {
                                                                                                                    if ($r == 0) {
                                                                                                                        echo $bhk_id[$r];
                                                                                                                    } else {
                                                                                                                        echo ',' . $bhk_id[$r];
                                                                                                                    }
                                                                                                                }
                                                                                                                ?> BHK</span>
                                                                                                    </li>
            
            
            
                                                                                                </ul>
                                                                                                <!-- Price -->
                                                                                                <div class="price-properties">
                                                                                                    <h3 class="title mt-3">
                                                                                                        <a href="single-property.php?property=<?php echo base64_encode($val['id']) ?>">₹ <?php echo $val['min_price'] ?> - <?php echo $val['max_price'] ?></a>
                                                                                                    </h3>
            
                                                                                                    <div class="right_button">
                                                                                                        <a href="single-property.php?property=<?php echo base64_encode($val['id']) ?>" class="info_button">Get Info</a>
                                                                                                    </div>
                                                                                                </div>
            
                                                                                            </div>
                                                                                        </div>
                                                                                    </div>
                                                                        <?php }}}else{ ?>
                                                                            
                                                                        <div class="item col-lg-4 col-md-6 col-xs-12 landscapes sale">
                                                                                        <div class="project-single">
                                                                                            <div class="project-inner project-head">
                                                                                                <div class="project-bottom">
                                                                                                    <h4><a href="single-property.php?property=<?php echo base64_encode($val['id']) ?>">View Property</a></h4>
                                                                                                </div>
                                                                                                <div class="homes">
                                                                                                    <!-- homes img -->
                                                                                                    <a href="single-property.php?property=<?php echo base64_encode($val['id']) ?>" class="homes-img">
                                                                                                        <div class="homes-tag button alt featured"><?php echo $val['pro_type']; ?></div>
                                                                                                        <div class="homes-tag button alt sale"><?php echo $status[$f] ?></div>
            
                                                                                                        <img src="Admin/<?php echo $un_img[0]; ?>" alt="home-1" class="img-responsive">
                                                                                                    </a>
                                                                                                </div>
                                                                                            </div>
                                                                                            <!-- homes content -->
                                                                                            <div class="homes-content">
                                                                                                <!-- homes address -->
                                                                                                <h3><a href="single-property.php?property=<?php echo base64_encode($val['id']) ?>"><?php echo $val['pro_name']; ?></a></h3>
                                                                                                <p class="homes-address mb-3">
                                                                                                    <a href="single-property.php?property=<?php echo base64_encode($val['id']) ?>">
                                                                                                        <i class="fa fa-map-marker"></i><span><?php echo $val['pro_full_ads']; ?></span>
                                                                                                    </a>
                                                                                                </p>
                                                                                                <!-- homes List -->
                                                                                                <ul class="homes-list clearfix">
                                                                                                    <li>
                                                                                                        <i class="fa fa-home" aria-hidden="true"></i>
                                                                                                        <span><?php
                                                                                                                $bhk_id = unserialize($val['bhk']);
                                                                                                                $cont = count((array) $bhk_id);
                                                                                                                //print_r($bhk_id);
                                                                                                                for ($r = 0; $r < $cont; $r++) {
                                                                                                                    if ($r == 0) {
                                                                                                                        echo $bhk_id[$r];
                                                                                                                    } else {
                                                                                                                        echo ',' . $bhk_id[$r];
                                                                                                                    }
                                                                                                                }
                                                                                                                ?> BHK</span>
                                                                                                    </li>
            
            
            
                                                                                                </ul>
                                                                                                <!-- Price -->
                                                                                                <div class="price-properties">
                                                                                                    <h3 class="title mt-3">
                                                                                                        <a href="single-property.php?property=<?php echo base64_encode($val['id']) ?>">₹ <?php echo $val['min_price'] ?> - <?php echo $val['max_price'] ?></a>
                                                                                                    </h3>
            
                                                                                                    <div class="right_button">
                                                                                                        <a href="single-property.php?property=<?php echo base64_encode($val['id']) ?>" class="info_button">Get Info</a>
                                                                                                    </div>
                                                                                                </div>
            
                                                                                            </div>
                                                                                        </div>
                                                                                    </div>
                                                                        <?php } ?>
                                                                
                                                                
                                                        <?php }
                                                        }
                                                    } 
                                                    else 
                                                    { 
                                                         if (!empty($_GET['bhk']))
                                                                {
                                                                        $un_bhk = unserialize($val['bhk']);
                                                                        $g_bhk = $_GET['bhk'];
                                                                        $unbh_cnt = count((array) $g_bhk);
                                                                        for ($x = 0; $x < $unbh_cnt; $x++) 
                                                                        {
                                                                            if (in_array($g_bhk[$x], $un_bhk)) 
                                                                            {
                                                                               // echo"ddf";
                                                                            ?>
                                                                                <div class="item col-lg-4 col-md-6 col-xs-12 landscapes sale">
                                                                                    <div class="project-single">
                                                                                        <div class="project-inner project-head">
                                                                                            <div class="project-bottom">
                                                                                                <h4><a href="single-property.php?property=<?php echo base64_encode($val['id']) ?>">View Property</a></h4>
                                                                                            </div>
                                                                                            <div class="homes">
                                                                                                <!-- homes img -->
                                                                                                <a href="single-property.php?property=<?php echo base64_encode($val['id']) ?>" class="homes-img">
                                                                                                    <div class="homes-tag button alt featured"><?php echo $val['pro_type']; ?></div>
                                                                                                    <!--<div class="homes-tag button alt sale">For Sale</div>-->
                
                                                                                                    <img src="Admin/<?php echo $un_img[0]; ?>" alt="home-1" class="img-responsive">
                                                                                                </a>
                                                                                            </div>
                                                                                        </div>
                                                                                        <!-- homes content -->
                                                                                        <div class="homes-content">
                                                                                            <!-- homes address -->
                                                                                            <h3><a href="single-property.php?property=<?php echo base64_encode($val['id']) ?>"><?php echo $val['pro_name']; ?></a></h3>
                                                                                            <p class="homes-address mb-3">
                                                                                                <a href="single-property.php?property=<?php echo base64_encode($val['id']) ?>">
                                                                                                    <i class="fa fa-map-marker"></i><span><?php echo $val['pro_full_ads']; ?></span>
                                                                                                </a>
                                                                                            </p>
                                                                                            <!-- homes List -->
                                                                                            <ul class="homes-list clearfix">
                                                                                                <li>
                                                                                                    <i class="fa fa-home" aria-hidden="true"></i>
                                                                                                    <span><?php
                                                                                                            $bhk_id = unserialize($val['bhk']);
                                                                                                            $cont = count((array) $bhk_id);
                                                                                                            //print_r($bhk_id);
                                                                                                            for ($r = 0; $r < $cont; $r++) {
                                                                                                                if ($r == 0) {
                                                                                                                    echo $bhk_id[$r];
                                                                                                                } else {
                                                                                                                    echo ',' . $bhk_id[$r];
                                                                                                                }
                                                                                                            }
                                                                                                            ?> BHK</span>
                                                                                                </li>
                
                
                
                                                                                            </ul>
                                                                                            <!-- Price -->
                                                                                            <div class="price-properties">
                                                                                                <h3 class="title mt-3">
                                                                                                    <a href="single-property.php?property=<?php echo base64_encode($val['id']) ?>">₹ <?php echo $val['min_price'] ?> - <?php echo $val['max_price'] ?></a>
                                                                                                </h3>
                
                                                                                                <div class="right_button">
                                                                                                    <a href="single-property.php?property=<?php echo base64_encode($val['id']) ?>" class="info_button">Get Info</a>
                                                                                                </div>
                                                                                            </div>
                
                                                                                        </div>
                                                                                    </div>
                                                                                </div>
                                                                            <?php }
                                                                        }
                                                                }
                                                                else
                                                                {
                                                                ?>
                                                                         <div class="item col-lg-4 col-md-6 col-xs-12 landscapes sale">
                                                                            <div class="project-single">
                                                                                <div class="project-inner project-head">
                                                                                    <div class="project-bottom">
                                                                                        <h4><a href="single-property.php?property=<?php echo base64_encode($val['id']) ?>">View Property</a></h4>
                                                                                    </div>
                                                                                    <div class="homes">
                                                                                        <!-- homes img -->
                                                                                        <a href="single-property.php?property=<?php echo base64_encode($val['id']) ?>" class="homes-img">
                                                                                            <div class="homes-tag button alt featured"><?php echo $val['pro_type']; ?></div>
                                                                                            <!--<div class="homes-tag button alt sale">For Sale</div>-->
        
                                                                                            <img src="Admin/<?php echo $un_img[0]; ?>" alt="home-1" class="img-responsive">
                                                                                        </a>
                                                                                    </div>
                                                                                </div>
                                                                                <!-- homes content -->
                                                                                <div class="homes-content">
                                                                                    <!-- homes address -->
                                                                                    <h3><a href="single-property.php?property=<?php echo base64_encode($val['id']) ?>"><?php echo $val['pro_name']; ?></a></h3>
                                                                                    <p class="homes-address mb-3">
                                                                                        <a href="single-property.php?property=<?php echo base64_encode($val['id']) ?>">
                                                                                            <i class="fa fa-map-marker"></i><span><?php echo $val['pro_full_ads']; ?></span>
                                                                                        </a>
                                                                                    </p>
                                                                                    <!-- homes List -->
                                                                                    <ul class="homes-list clearfix">
                                                                                        <li>
                                                                                            <i class="fa fa-home" aria-hidden="true"></i>
                                                                                            <span><?php
                                                                                                    $bhk_id = unserialize($val['bhk']);
                                                                                                    $cont = count((array) $bhk_id);
                                                                                                    //print_r($bhk_id);
                                                                                                    for ($r = 0; $r < $cont; $r++) {
                                                                                                        if ($r == 0) {
                                                                                                            echo $bhk_id[$r];
                                                                                                        } else {
                                                                                                            echo ',' . $bhk_id[$r];
                                                                                                        }
                                                                                                    }
                                                                                                    ?> BHK</span>
                                                                                        </li>
        
        
        
                                                                                    </ul>
                                                                                    <!-- Price -->
                                                                                    <div class="price-properties">
                                                                                        <h3 class="title mt-3">
                                                                                            <a href="single-property.php?property=<?php echo base64_encode($val['id']) ?>">₹ <?php echo $val['min_price'] ?> - <?php echo $val['max_price'] ?></a>
                                                                                        </h3>
        
                                                                                        <div class="right_button">
                                                                                            <a href="single-property.php?property=<?php echo base64_encode($val['id']) ?>" class="info_button">Get Info</a>
                                                                                        </div>
                                                                                    </div>
        
                                                                                </div>
                                                                            </div>
                                                                        </div>

                                                                <?php }?>
                                                    <?php } ?>
                                                <?php } ?>
                                            <?php } ?>
                                        <?php } ?>
                                    <?php } ?>
                                <?php } ?>
                            <?php } ?>
                        </div>
                    </div>
                </div>
                <!-- <nav aria-label="..." class="agents pt-55">
                    <ul class="pagination disabled">
                        <li class="page-item disabled">
                            <a class="page-link" href="#" tabindex="-1">Previous</a>
                        </li>
                        <li class="page-item active">
                            <a class="page-link" href="#">1 <span class="sr-only">(current)</span></a>
                        </li>
                        <li class="page-item"><a class="page-link" href="#">2</a></li>
                        <li class="page-item"><a class="page-link" href="#">3</a></li>
                        <li class="page-item"><a class="page-link" href="#">3</a></li>
                        <li class="page-item"><a class="page-link" href="#">5</a></li>
                        <li class="page-item">
                            <a class="page-link" href="#">Next</a>
                        </li>
                    </ul>
                </nav> -->
            </div>
        </section>
        <!-- END SECTION PROPERTIES LISTING -->

        <!-- START FOOTER -->
        <?php include("footer.php"); ?>

        <!-- Modal -->
        <div class="modal fade" id="exampleModal" tabindex="-1" aria-labelledby="exampleModalLabel" aria-hidden="true">
            <div class="modal-dialog modal-dialog-centered">
                <div class="modal-content">
                    <div class="modal-header">
                        <h5 class="modal-title" id="exampleModalLabel">Enquiry Now..
                        </h5>
                        <button type="button" class="close" data-dismiss="modal" aria-label="Close">
                            <span aria-hidden="true">&times;</span>
                        </button>
                    </div>
                    <div class="modal-body google-maps home-18">
                        <div class="filter">
                            <form method="get">
                                <div class="filter-item ">
                                    <label>Name</label>
                                    <input type="text" placeholder="Enter Your Name">
                                </div>
                                <div class="filter-item ">
                                    <label>Contact</label>
                                    <input type="tel" placeholder="Enter Your Phone No">
                                </div>
                                <div class="filter-item">
                                    <label>Email</label>
                                    <input type="email" placeholder="Enter Your Email">
                                </div>
                                <div class="clear"></div>

                                <div class="filter-item">

                                    <input type="submit" class="button alt mb-0" value="SUBMIT" />
                                </div>
                            </form>
                        </div>
                    </div>
                </div>
            </div>
        </div>


        <a data-scroll href="#wrapper" class="go-up"><i class="fa fa-angle-double-up" aria-hidden="true"></i></a>
        <!-- END FOOTER -->

        <!-- ARCHIVES JS -->
        <script src="js/jquery-3.5.1.min.js"></script>
        <script src="js/rangeSlider.js"></script>
        <script src="js/tether.min.js"></script>
        <script src="js/popper.min.js"></script>
        <script src="js/bootstrap.min.js"></script>
        <script src="js/mmenu.min.js"></script>
        <script src="js/mmenu.js"></script>
        <script src="js/aos.js"></script>
        <script src="js/aos2.js"></script>
        <script src="js/slick.min.js"></script>
        <script src="js/slick4.js"></script>
        <script src="js/smooth-scroll.min.js"></script>
        <script src="js/lightcase.js"></script>
        <script src="js/search.js"></script>
        <script src="js/light.js"></script>
        <script src="js/jquery.magnific-popup.min.js"></script>
        <script src="js/popup.js"></script>
        <script src="js/searched.js"></script>
        <script src="js/ajaxchimp.min.js"></script>
        <script src="js/newsletter.js"></script>
        <script src="js/inner.js"></script>
        <script src="js/color-switcher.js"></script>

    </div>
    <!-- Wrapper / End -->
</body>

</html>

MMCT - 2023