23 lines
594 B
PHP
23 lines
594 B
PHP
<?php
|
|
include 'include/db.php';
|
|
include 'include/templates.php';
|
|
|
|
if (!isset($_GET['id'])) {
|
|
die("<meta http-equiv=\"refresh\" content=\"0; url=/\">");
|
|
}
|
|
|
|
showHeader();
|
|
$imgs = getImage($_GET['id']);
|
|
if ($imgs == NULL) {
|
|
die("<meta http-equiv=\"refresh\" content=\"0; url=/\">");
|
|
}
|
|
$tags = explode(",", $imgs[0]["tags"]);
|
|
|
|
echo '<center><img src="' . $imgs[0]["location"] . '" /></center>';
|
|
echo '<strong>Uploader:</strong> ' . uuidToUsername($imgs[0]["uploader"]);
|
|
echo '<br/><strong>Tags:</strong>';
|
|
for($x = 0; $x < count($tags); $x++) {
|
|
printTag($tags[$x], true);
|
|
}
|
|
echo $footer;
|
|
?>
|