| 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
/**
* programeditfillstart.php – Pick a licensing house to pre-fill from
* Converted from programeditfillstart.php
*/
include __DIR__ . '/header.php';
?>
<div id="content" style="max-width: 800px;" >
<div id="content-header">
<h2> Pre-Fill Your Program</h2>
</div>
<div class="container-fluid">
<?php
$stmtHouse = db_read()->prepare(
"SELECT DISTINCT licensing FROM stagemag.prefill
WHERE licensing <> 'Conacord' AND licensing <> 'licensing'
ORDER BY licensing"
);
$stmtHouse->execute();
$houseRows = $stmtHouse->fetchAll();
$fill = (int)($_GET['fill'] ?? 0);
$houseLabels = [
'TRW' => 'Theatrical Rights Worldwide (TRW)',
];
?>
Select your licensing house:<br>
<br>
<ul>
<?php foreach ($houseRows as $house): ?>
<li><a href="programeditfill.php?licensing=<?= urlencode($house['licensing']) ?>&fill=<?= $fill ?>&partner=<?= urlencode($house['licensing']) ?>"><?= htmlspecialchars($houseLabels[$house['licensing']] ?? $house['licensing']) ?></a></li>
<?php endforeach; ?>
</ul>
</div>
<!--Footer-part-->
<br><br><br><br>
<?php include __DIR__ . '/footer.php'; ?>