meowboard/image.php

27 lines
796 B
PHP
Raw Permalink Normal View History

2024-08-01 14:06:36 +01:00
<?php
include 'include/db.php';
include 'include/templates.php';
if (!isset($_GET['id'])) {
die("<meta http-equiv=\"refresh\" content=\"0; url=/\">");
}
2024-08-01 14:06:36 +01:00
showHeader();
$imgs = getImage($_GET['id']);
if ($imgs == NULL) {
die("<meta http-equiv=\"refresh\" content=\"0; url=/\">");
}
2024-08-01 14:06:36 +01:00
$tags = explode(",", $imgs[0]["tags"]);
echo '<center><img src="' . $imgs[0]["location"] . '" /></center>';
echo '<strong>Uploader:</strong> ' . uuidToUsername($imgs[0]["uploader"]);
2024-08-01 14:06:36 +01:00
echo '<br/><strong>Tags:</strong>';
for($x = 0; $x < count($tags); $x++) {
printTag($tags[$x], true);
}
2024-10-22 13:40:57 +01:00
if (isAdmin(tokenToUuid($_COOKIE["meowboardSession"])) == 1) {
echo '<form action="delete.php?id=' . $_GET['id'] . '" method="get"><input type="text" id="id" name="id"><br/><button>Delete</button>';
}
2024-08-01 14:06:36 +01:00
echo $footer;
?>