| Server IP : 104.21.21.239 / Your IP : 216.73.217.39 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/mcifa.com/public_html/ |
Upload File : |
<?php require 'header.php'; ?>
<?php requireLogin(); ?>
<section id="content" class="sbr">
<div class="menu-shadow"></div>
<div class="container clearfix">
<div class="page-header clearfix" style="margin-bottom: 20px;">
<h1>NOTES FROM A JOURNEY</h1>
<div class="line"></div>
</div>
<!--/ .page-header-->
<section id="main" class="twelve columns">
<article class="entry clearfix">
<!--/ .entry-title-->
<!--/ .preloader-->
<!--/ .entry-meta-->
<div class="entry-body">
All issues are in PDF form. You can click to view an issue, or save a file to your computer or tablet. On most PC browsers, right mouse click the link and select "Save Target As" or "Save File As". On a Mac, Either control+click or click and hold the mouse button down on the link until the menu pops up. Select the item from the menu that indicates it will "save" or "download" the file to the disk. On iPads, you can save to iBooks.
<br><br>
<?php
$db = getReadDb();
$stmt = $db->prepare("SELECT * FROM notes ORDER BY id");
$stmt->execute();
$rows = $stmt->fetchAll();
?>
<table border="1" cellpadding="4" cellspacing="0" width="100%">
<?php foreach ($rows as $row): ?>
<tr>
<td style="border: 1px;border-style: dashed;border-color:purple;padding:8px;"><font face="verdana" size-1><?= h($row['text']) ?></td>
<td style="border: 1px;border-style: dashed;border-color:purple;padding:8px;"><font face="verdana" size-1><a href="http://www.mcifa.com/pdf/<?= h($row['issue']) ?>" target="_new"><?= h($row['issue']) ?></a></td>
<?php endforeach; ?>
</table>
<!--/ .about-author-->
</div>
<!--/ .entry-body-->
</article>
<!--/ .entry-->
</section> <!--/ #main-->
<?php require 'sidebar.php'; ?>
<?php require 'footer.php'; ?>