View file File name : Property_near.php Content :<div class="our-team content-area testimonialbg"> <div class="container"> <div class="row"> <div class="col-sm-12"> <div class="main-title"> <table class="table text-center"> <thead> <tr> <th>id</th> <th>project_code</th> <th>contact_number</th> <th>contact_mail</th> <th>lacality</th> <th>station</th> <th>area</th> <th>per_sq_ft_price</th> <th>description</th> <th>price</th> <th>furnishing</th> <th>preferred_tenants</th> <th>available_from</th> <th>downpayment</th> <th>rentmonthly</th> <th>last_created</th> <th>last_updated</th> <th>updated_by</th> </tr> </thead> <tbody> <?php foreach($test as $dt){ ?> <tr> <td><?=$dt->id?></td> <td><?=$dt->project_code?></td> <td><?=$dt->contact_number?></td> <td><?=$dt->contact_mail?></td> <td><?=$dt->lacality?></td> <td><?=$dt->station?></td> <td><?=$dt->area?></td> <td><?=$dt->per_sq_ft_price?></td> <td><?=$dt->description?></td> <td><?=$dt->price?></td> <td><?=$dt->furnishing?></td> <td><?=$dt->preferred_tenants?></td> <td><?=$dt->available_from?></td> <td><?=$dt->rentmonthly?></td> <td><?=$dt->downpayment?></td> <td><?=$dt->last_created?></td> <td><?=$dt->last_updated?></td> <td><?=$dt->updated_by?></td> </tr> <?php } ?> </tbody> </table> </div> </div> </div> </div> </div>