($pageid $nav) $nav $nav
($pageid $nav) $nav $nav
<?php
// Setup File:
# Constants:
DEFINE('D_TEMPLATE', 'template');
# Functions:
include('functions/data.php');
include('functions/template.php');
if (isset($_GET ['page'])) {
$pageid = $_GET ['page']; // set $pageid to equal the value given in the
URL
} else {
# Page Setup
$page = data_page($dbc, $pageid);
?>
Index.php
<?php
include ('config/setup.php'); ?>
$page = mysqli_fetch_assoc($r);
echo $page['title']
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<div id="wrap">
<div class="container">
Navigation.php
<nav class="navbar navbar-default" role="navigation">
<div class="container">
<li><a href="#">Faq</a></li>
<li><a href="#">Log IN</a></li>
</ul>
</div>
</nav><!-- End nav -->
Footer.php
<footer id="footer">
<div class="container">
<center> <p>MALCOLM MOFFAT COLLEGE OF EDUCATION.</p> </center>
<center> <p> Copyright © 2018 Mj & SHEM Arts</p> </center>
</div>
</footer><!-- END footer -->
Template.php
<?php
<?php }
}
?>