| Server IP : 104.21.21.239 / Your IP : 216.73.216.68 Web Server : Apache/2.4.68 (Amazon Linux) OpenSSL/3.5.5 System : Linux ip-172-31-69-123.ec2.internal 6.1.176-223.369.amzn2023.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Jul 24 13:34:27 UTC 2026 x86_64 User : ec2-user ( 1000) PHP Version : 8.4.23 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/banners/domains/lake/public_html/ |
Upload File : |
<?php
require_once __DIR__ . '/config.php';
$pagename = 'Planning';
$db = getDB();
$stmt = $db->prepare('SELECT * FROM lake.pagecontent WHERE id = 7');
$stmt->execute();
$page = $stmt->fetch();
include __DIR__ . '/header.php';
?>
<div class="section mt-3" style="padding: 80px 0;">
<div class="container">
<div class="row justify-content-center mb-5">
<div class="col-md-7 text-center">
<div class="heading-block border-bottom-0 mb-4">
<h2 class="mb-4 text-transform-none"><?= htmlspecialchars($page->pagename ?? '') ?></h2>
</div>
<div class="svg-line mb-4">
<img src="demos/nonprofit/images/divider-1.svg" alt="svg divider" height="20">
</div>
<div style="text-align:left">
<p><?= $page->pagetext ?? '' ?></p>
</div>
<?php if (!empty($getUser) && $getUser->accesslevel >= 10): ?>
<a href="/admin/edit_page.php?id=<?= (int)$page->id ?>">Edit Page</a>
<?php endif; ?>
</div>
</div>
</div>
</div>
</div>
</section><!-- #content end -->
<?php include __DIR__ . '/footer.php'; ?>