D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home3
/
encodto1
/
junglebellresort.com
/
Filename :
works.php
back
Copy
<!DOCTYPE html> <html lang="en"> <head> <?php include'style.php';?> </head> <body> <?php include'header.php';?> <main> <div class="jumbo_section"> <div class="jumbo_text"> <h1>WB Casting Works</h1> <ul class="list-inline jumbo_list"> <li><a href="./">Home</a></li> <li>/</li> <li><a href="">Our Work</a></li> </ul> </div> </div> <!-- The model biography --> <section class="well-1 work_section"> <div class="container container-wide"> <div class="row"> <div class="col-lg-6 col-sm-12"> <div class="header_div"> <h4 class="header_title">Our Works & Work shop</h4> </div> </div> <div class="col-lg-6 col-sm-12"> <div class="work_contents"> <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p> <p class="mt-0 mb-10 about_content">Creating a unforgatable experience in an environment, where our guest satisfaction will be our highest priority.</p> </div> </div> </div> </div> </section> <section class="project-section"> <div class="container-fluid"> <div class="row"> <div class="section_title text-center"> <h4 class="text-white fw-700 text-center">Our Success Projects</h4> <hr></hr> </div> <div class="col-lg-12 col-sm-12"> <div class="project_slider owl-carousel owl-carousel--mod-1 owl-theme "> <?php $view_project = "select * from projects where project_type = 'success'"; $run_qry = mysqli_query($conn, $view_project); if($run_qry-> num_rows > 0){ while($row = mysqli_fetch_assoc($run_qry)) { $project_name = $row['project_name']; $project_img = $row['project_img']; ?> <div class="item"> <div class="project_div"> <img src="admin/project-images/<?php echo $project_img; ?>" alt="<?php echo $project_name; ?>"> </div> </div> <?php } }?> <!-- <div class="item"> <div class="project_div"> <img src="images/projects/p02.jpg" alt="movie-project"> </div> </div> --> </div> </div> </div> </div> </section> <section class="project-section"> <div class="container-fluid"> <div class="row"> <div class="section_title text-center"> <h4 class="text-white fw-700 text-center">Our Upcoming Projects</h4> <hr></hr> </div> <div class="col-lg-12 col-sm-12"> <div class="project_slider2 owl-carousel owl-carousel--mod-1 owl-theme "> <?php $view_project = "select * from projects where project_type = 'upcoming'"; $run_qry = mysqli_query($conn, $view_project); if($run_qry-> num_rows > 0){ while($row = mysqli_fetch_assoc($run_qry)) { $project_name = $row['project_name']; $project_img = $row['project_img']; ?> <div class="item"> <div class="project_div"> <img src="admin/project-images/<?php echo $project_img; ?>" alt="<?php echo $project_name; ?>"> </div> </div> <?php } }?> </div> </div> </div> </div> </section> </main> <?php include'footer.php';?> </body> </html>