D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
diafrica
/
public_html
/
Filename :
general-requirement.php
back
Copy
<?php $page_title; $page_title = ucfirst(basename(__FILE__, '.php')); if ($page_title === 'index') { $page_title = 'Home'; } include 'includes/config.php'; $page_title = "General Requirement"; 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="containter text-center"> <?php $query = "SELECT * FROM content WHERE id='5' "; $query_run = mysqli_query($con, $query); while ($row_post = mysqli_fetch_array($query_run)) { $title = $row_post['title']; $link = $row_post['link']; $image = $row_post['photo']; $contenter = $row_post['content']; } ?> <!-- Section: Team --> <section> <div class="container"> <div class="section-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"><?= $title ?></h3> <h6 class="text-uppercase line-bottom line-bottom-theme-colored1 title font-playfair text-uppercase">Sacred Heart</h6> <p class=""><?= $contenter ?></p> </div> </div> </div> </div> </section> </div> <!-- end main-content --> <?php include_once 'section/footer.php'; ?>