backup: live-stand vor erstem git-deployment

This commit is contained in:
2026-06-29 11:04:33 +02:00
commit 90368b8a29
699 changed files with 162032 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
<?php
$query = "SELECT * FROM iframe_header WHERE id = '" . $sitepart_id."'";
$iframe_url = "";
$result = @mysqli_query($GLOBALS['mysql_con'], $query);
if (@mysqli_num_rows($result) == 1) {
$iframe = @mysqli_fetch_array($result);
$iframe_url = $iframe['url'];
$iframe_width = $iframe['width'];
$iframe_height = $iframe['height'];
}
?>
<?php if ($iframe_url != ""): ?>
<div class="iframecontent">
<iframe width="<?php echo $iframe_width; ?>" height="<?php echo $iframe_height; ?>"
src="<?php echo $iframe_url; ?>"></iframe>
</div>
<?php endif; ?>