| 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 if (isLoggedIn()): ?>
<section id="content" class="sbr">
<div class="menu-shadow"></div>
<div class="container clearfix">
<div class="page-header clearfix" style="margin-bottom: 20px;">
<h1>MCIFA Photos</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">
<?php
$db = getReadDb();
$stmt = $db->prepare("SELECT * FROM photos WHERE member = 'H0004' AND id >= 3120 AND id < 3186 ORDER BY id DESC");
$stmt->execute();
$photos = $stmt->fetchAll(PDO::FETCH_ASSOC);
?>
<center><p class="PurpleHeadline">May 2016 The Go-Between Previews - COCO's Photos<br></span></center>
<div align=center>
<font face=arial size=-1>
<a href="photos.php">Back to the Member's Only Photo Gallery</a></font>
</div></strong>
<p>
<div align="center">
<?php $columns = 3; ?>
<table border="0" width=590>
<tr>
<?php foreach ($photos as $index => $photo): ?>
<?php if ($index > 0 && $index % $columns === 0): ?>
</tr><tr>
<?php endif; ?>
<td width=190 valign=top>
<div align="center">
<a href="viewphoto.php?id=<?php echo urlencode($photo['id']); ?>"><img src="/photos/<?php echo h($photo['thumbnail']); ?>" border=1 width=125><br>
<font face=arial size=-2>
<?php echo h($photo['description']); ?>
</a>
</div>
</td>
<?php endforeach; ?>
<?php if (count($photos) % $columns !== 0): ?>
</tr>
<?php endif; ?>
</table>
</div>
<p>
</td></tr></table>
<!--/ .about-author-->
</div>
<!--/ .entry-body-->
</article>
<!--/ .entry-->
</section> <!--/ #main-->
<?php endif; ?>
<?php require 'sidebar.php'; ?>
<?php require 'footer.php'; ?>