| 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/stagemag/ |
Upload File : |
<?php
ob_start(); ?>
<title>Stage Mag Digital Show Program - Features</title>
<meta name="description" content="Learn about templates, features and options to make your own digital show program with BroadwayWorld's FREE Stage Mag Service. ">
<link rel="canonical" href="https://stagemag.broadwayworld.com/newmain-features.php" />
<?php $pageinfo = ob_get_clean();
include __DIR__ . '/newmainheader.php'; ?>
<!-- end: Page title -->
<!-- Content -->
<section id="page-content" class="sidebar-right">
<div class="container">
<h1 style="font-size: 34px;
letter-spacing: 0;
line-height: 38px;
font-weight:bold;
margin-bottom: 25px;
margin-top: 8px;
color: #1f1f1f;">Digital Show Program Features</h1>
<div class="row">
<!-- post content -->
<div class="content col-lg-9">
<!-- Gallery -->
<div class="grid-layout grid-3-columns" data-margin="20" data-item="grid-item" data-lightbox="gallery">
<?php
$stmt_feat = db_read()->prepare("SELECT * FROM stagemag.features ORDER BY id");
$stmt_feat->execute();
$features = $stmt_feat->fetchAll();
foreach ($features as $feat_row):
?>
<div class="grid-item">
<a class="image-hover-zoom" href="https://cloudimages.broadwayworld.com/stagemag/demo/<?= htmlspecialchars($feat_row['id']) ?>a.jpg" data-lightbox="gallery-image"><img src="https://cloudimages.broadwayworld.com/stagemag/demo/<?= htmlspecialchars($feat_row['id']) ?>a.jpg" style="border-width:1px;border-color:black;border-style:solid;" alt="<?= htmlspecialchars($feat_row['title']) ?>"><b><?= htmlspecialchars($feat_row['title']) ?></b><br><?= htmlspecialchars($feat_row['blurb']) ?></a>
</div>
<?php endforeach; ?>
</div>
<!-- end: Gallery -->
</div>
<?php include __DIR__ . '/newmainsidebar.php'; ?>
</div>
</div>
</section>
<!-- end: Page Content -->
<!-- Footer -->
<?php include __DIR__ . '/newmainfooter.php'; ?>