| 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
if (!isset($_GET['type'])) {
exit;
}
$type = strtolower($_GET['type']);
if ($type !== 'photos' && $type !== 'videos') {
exit;
}
?>
<?php require 'header.php'; ?>
<section id="content" class="sbr">
<div class="menu-shadow"></div>
<div class="container clearfix">
<div class="page-header clearfix" style="margin-bottom: 20px;">
<h1>Monthly Multimedia - <?php echo htmlspecialchars($_GET['type']); ?></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">
<style type="text/css">
.shortcode-content p iframe {
width:100%;
}
.shortcode-content iframe {
width:100%;
}
</style>
<div class="shortcode-content">
<?php
$pdo = getReadDb();
$stmt = $pdo->prepare("SELECT * FROM multimedia WHERE typer = ? ORDER BY id");
$stmt->execute([ucfirst($type)]);
$geter = $stmt->fetchAll();
?>
<center>
<?php foreach ($geter as $row): ?>
<?php echo $row['embed']; ?><br><B><?php echo htmlspecialchars($row['caption']); ?></B>
<p>
<?php endforeach; ?>
</center>
</div>
<p>
<CenteR>
<font color="purple"><b>Check Back for New Photos & Videos!</b></font>
</CenteR>
<!--/ .about-author-->
</div>
<!--/ .entry-body-->
</article>
<!--/ .entry-->
</section> <!--/ #main-->
<?php require 'sidebar.php'; ?>
<?php require 'footer.php'; ?>