| Server IP : 172.67.201.108 / Your IP : 216.73.216.11 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 = 'Dues';
$db = getDB();
$stmt = $db->prepare('SELECT * FROM lake.pagecontent WHERE id = 1');
$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>
<small>Note: PayPal prices include their service fees. <br><br></small>
<table style="width:100%"><tr>
<td style='width:50%;text-align:center;'>
<h2 style="font-size:14pt;">Class 1 - $622.21</h2>
<form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_top">
<input type="hidden" name="cmd" value="_s-xclick" />
<input type="hidden" name="hosted_button_id" value="KQC7JDYV3GAH4" />
<input type="hidden" name="currency_code" value="USD" />
<input type="image" src="https://www.paypalobjects.com/en_US/i/btn/btn_paynowCC_LG.gif" border="0" name="submit" title="PayPal - The safer, easier way to pay online!" alt="Buy Now" />
</form>
</td>
<td style='width:50%;text-align:center;'>
<h2 style="font-size:14pt;">Class 2 - $342</h2>
<form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_top">
<input type="hidden" name="cmd" value="_s-xclick" />
<input type="hidden" name="hosted_button_id" value="ED9NJ2DH3YDT8" />
<input type="hidden" name="currency_code" value="USD" />
<input type="image" src="https://www.paypalobjects.com/en_US/i/btn/btn_paynowCC_LG.gif" border="0" name="submit" title="PayPal - The safer, easier way to pay online!" alt="Buy Now" />
</form>
</td>
</tr><tr>
<td style='width:50%;text-align:center;'>
<h2 style="font-size:14pt;">Class 3 - $342</h2>
<form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_top">
<input type="hidden" name="cmd" value="_s-xclick" />
<input type="hidden" name="hosted_button_id" value="HP7CRQCTWSX8L" />
<input type="hidden" name="currency_code" value="USD" />
<input type="image" src="https://www.paypalobjects.com/en_US/i/btn/btn_paynowCC_LG.gif" border="0" name="submit" title="PayPal - The safer, easier way to pay online!" alt="Buy Now" />
</form>
</td>
<td style='width:50%;text-align:center;'>
<h2 style="font-size:14pt;">Class 4 - $342</h2>
<form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_top">
<input type="hidden" name="cmd" value="_s-xclick" />
<input type="hidden" name="hosted_button_id" value="5HYW534RVQ89J" />
<input type="hidden" name="currency_code" value="USD" />
<input type="image" src="https://www.paypalobjects.com/en_US/i/btn/btn_paynowCC_LG.gif" border="0" name="submit" title="PayPal - The safer, easier way to pay online!" alt="Buy Now" />
</form>
</td>
</tr></table>
</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'; ?>