0byt3m1n1
Path:
/
var
/
www
/
listcrawler.app
/
public_html
/
includes
/
[
Home
]
File: location-info.php
<!--location info--> <?php $chkLocInfo = "SELECT * FROM `location_info` WHERE id = " . $get_location_id . " LIMIT 1" ; $chkLocInfoResult = mysqli_query($conn, $chkLocInfo); $countLocInfoResult = mysqli_num_rows($chkLocInfoResult); if ($countLocInfoResult > 0 ) { $rowLocInfo = mysqli_fetch_assoc($chkLocInfoResult); if ( isset($rowLocInfo["is_active"]) && $rowLocInfo["is_active"] == 'Y' ) { if ( isset($rowLocInfo["title"]) && !empty($rowLocInfo["title"]) ) { ?> <div class="row mt-5"> </div> <div class="row mt-5"> <div class="col-12"> <h5 class="theme-color info-title"><?php echo $rowLocInfo["title"];?></h5> </div> </div> <?php } if ( isset($rowLocInfo["detail"]) && !empty($rowLocInfo["detail"]) ) { ?> <div class="row"> <div class="col-12 mt-4 info-description"> <?php echo nl2br($rowLocInfo["detail"]);?> </div> </div> <?php } } } ?>