| Server IP : 172.67.201.108 / 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_once __DIR__ . '/db_config.php';
if (isset($_GET['showcode'])) {
$pdo = getReadDb();
$stmt = $pdo->prepare("SELECT * FROM snapshots WHERE SHOWCODE = ?");
$stmt->execute([$_GET['showcode']]);
$photos = $stmt->fetchAll();
}
?>
<script language="javascript">
function popup(){
newwin = window.open('','picture2','width=450,height=500,scrollbars=1,resizable=1');}
</script>
<html>
<?php if (!empty($photos)): foreach ($photos as $row): ?>
<head><title>MCIFA</title></head>
<body bgcolor="ffffff" link="000000" vlink="000000" alink="000000">
<div align="center">
<a href="bigphoto.php?id=<?= htmlspecialchars($row['id'], ENT_QUOTES, 'UTF-8') ?>" target="picture2" onclick="popup();">
<img src="/biography/<?= htmlspecialchars($row['smallphoto'], ENT_QUOTES, 'UTF-8') ?>">
<br>
<strong><font face="arial" size="-2"><?= htmlspecialchars($row['description'], ENT_QUOTES, 'UTF-8') ?></font></strong></a>
<p>
</div>
<?php endforeach; endif; ?>
</body>
</html>