summary refs log tree commit diff stats
path: root/admin/manage.php
blob: 2485520dd2360fa0dc4d9e40b86d7e6efe27d017 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<UL><?php

$getimages = "SELECT * FROM moderation";
$getimages2 = mysql_query($getimages);
while ($getimages3 = mysql_fetch_array($getimages2))
{
?><LI><?php echo($getimages3['title']); ?> -
<IMG SRC="/moderation/<?php echo($getimages3['id']); ?>.png" ALT="<?php echo($getimages3['text']); ?>" TITLE="<?php echo($getimages3['text']); ?>"> - 
<A HREF="/admin/add.php?id=<?php echo($getimages3['id']); ?>">Add to Pending Queue</A> -
<A HREF="/admin/remove.php?id=<?php echo($getimages3['id']); ?>">Remove</A></LI><?php
}

?></UL>

<A HREF="/admin/">Back to Admin</A>