This commit is contained in:
2026-02-17 14:56:23 +01:00
commit 68f7a95fdf
695 changed files with 154611 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
<?php
$query = "SELECT * FROM image_header WHERE id = '" . $sitepart_id . "' LIMIT 1";
$result = @mysqli_query($GLOBALS['mysql_con'], $query);
if (@mysqli_num_rows($result) == 1) {
$image = @mysqli_fetch_array($result);
echo "\n<div class=\"imgcontent\">\n";
echo "<img loading='lazy' src='/userdata/".$image["content"]."'>";
echo "</div>\n";
}