hjkhhrtertererrrrrerrtertertertertertertert
bnmbnerterterterterterdfgdfgdfgdfgdfgdfgdfgdfgdfg
/
home4
/
digil8bw
/
thewhisperingpines.in
/
Upload FileeE
HOME
<?php ob_start(); include("configuration/function-include.php"); $sql_restaurant = "SELECT * FROM sh_restaurant WHERE status = 1 "; $result_restaurant = mysqli_query($conn, $sql_restaurant); $row_restaurant = mysqli_fetch_array($result_restaurant); ?> <!DOCTYPE html> <html lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>The Whispering Pines Bir | Restaurant</title> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link rel="shortcut icon" href="images/icons/favicon.png"> <link rel="stylesheet" href="css/style.css"> <style> .sc-posts.style-01 .item .content { transform: translateY(20px); } .gallery-popup img { width: 100%; height: 250px; } </style> </head> <body class="page"> <?php include('include/header.php'); ?> <div id="main-content" class="main-content"> <div id="home-main-content" class="home-main-content home-1"> <div class="page-title-wrapper" data-stellar-background-ratio="0.5"> <div class="content container"> <h1 class="heading_primary">Restaurant</h1> <ul class="breadcrumbs"> <li class="item"><a href="index.php">Home</a></li> <li class="item"><span class="separator"></span></li> <li class="item active">Restaurant</li> </ul> </div> </div> </div> <div class="site-content"> <div class="page-content"> <div class="container"> <?php $i = 0; $sql_gal = "Select * from sh_restaurant_images"; $query_gal = mysqli_query($conn, $sql_gal); if (mysqli_num_rows($query_gal) > 0) { ?> <div class="sc-gallery"> <div class="wrapper-gallery row" itemscope itemtype="http://schema.org/ItemList"> <?php while ($res_gal = mysqli_fetch_array($query_gal)) { ?> <div class="col-sm-4 filter-<?php echo $res_gal['id']; ?>"> <a href="upload/restaurant_image/<?php echo $res_gal['img']; ?>" class="gallery-popup"> <img src="upload/restaurant_image/<?php echo $res_gal['img']; ?>" alt="Restaurant"></a> </div> <?php } ?> </div> </div> <?php } ?> <div class="row" style="transform: none;"> <main class="site-main col-sm-12 col-md-12 flex-first"> <div class="event-single-content"> <div class="event clearfix"> <div class="wrapper"> <div class="content"> <h2 class="title"><?php echo $row_restaurant['title']; ?></h2> <div class="detail clearfix"> <div class="description"> <?php echo $row_restaurant['description']; ?> <h4>Menu</h4> </div> </div> </div> <div class="thumbnail comingsoon-wrapper"> <img src="upload/restaurant/<?php echo $row_restaurant['img']; ?>" alt="Restaurant Menu"> </div> </div> </div> </div> </main> </div> </div> </div> </div> </div> <?php include('include/footer.php'); ?> <script src="js/libs/jquery.min.js"></script> <script src="js/libs/stellar.min.js"></script> <script src="js/libs/jquery-ui.min.js"></script> <script src="js/libs/daterangepicker.min.js"></script> <script src="js/libs/daterangepicker.min-date.min.js"></script> <script src="js/libs/bootstrap.min.js"></script> <script src="js/libs/smoothscroll.min.js"></script> <script src="js/libs/owl.carousel.min.js"></script> <script src="js/libs/jquery.magnific-popup.min.js"></script> <script src="js/libs/theia-sticky-sidebar.min.js"></script> <script src="js/libs/counter-box.min.js"></script> <script src="js/libs/jquery.thim-content-slider.min.js"></script> <script src="js/theme-customs.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/sweetalert/2.1.2/sweetalert.min.js"></script> <?php if (!empty($_SESSION['msg'])) { echo ' <script type="text/javascript"> $(document).ready(function(){ swal("' . $_SESSION['msg'] . '", "", "success"); }); </script> '; unset($_SESSION['msg']); } if (!empty($_SESSION['msg1'])) { echo ' <script type="text/javascript"> $(document).ready(function(){ swal("Oops...", "' . $_SESSION['msg1'] . ' :(", "error"); }); </script> '; unset($_SESSION['msg1']); exit; } ?> <script> $(document).on('keypress', '.name', function(event) { var regex = new RegExp("^[a-zA-Z ]+$"); var key = String.fromCharCode(!event.charCode ? event.which : event.charCode); if (!regex.test(key)) { event.preventDefault(); return false; } }); $('.phone').on('input', function(event) { this.value = this.value.replace(/[^0-9]/g, ''); }); </script> </body> </html>