D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
diafrica
/
public_html
/
Filename :
career.php
back
Copy
<?php include 'includes/config.php'; $page_title; $page_title = ucfirst(basename(__FILE__, '.php')); if ($page_title === 'index') { $page_title = 'Home'; } $page_title = "Career at Dominican Institute"; include 'section/header.php'; include 'section/pages-header.php'; include 'includes/functions.php'; $Functions = new Functions(); ?> <!DOCTYPE html> <html dir="ltr" lang="en"> <!-- Start main-content --> <div class="main-content"> <div class="main-content-area"> <!-- Mission And Vision --> <br><br> <section> <div class="container bg-light"> <div class="section-content"> <?php $query = "SELECT * FROM content WHERE id='4'"; $query_run = mysqli_query($con, $query); while ($row_post = mysqli_fetch_array($query_run)) { $title = $row_post['title']; $contenter = $row_post['content']; ?> <div class="row align-items-center"> <div class="col-sm-12 col-md-12 col-lg-12 col-xl-12"> <h3 class="text-uppercase font-weight-800 mt-0 mb-0 line-height-1">Career at Dominican Institute</h3> </div> </div> <?php } ?> </div> </div> </section> </div> <!-- end main-content --> <?php include_once 'section/footer.php'; ?>