diff options
Diffstat (limited to 'admin/manage.php')
-rw-r--r-- | admin/manage.php | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/admin/manage.php b/admin/manage.php deleted file mode 100644 index 2485520..0000000 --- a/admin/manage.php +++ /dev/null | |||
@@ -1,15 +0,0 @@ | |||
1 | <UL><?php | ||
2 | |||
3 | $getimages = "SELECT * FROM moderation"; | ||
4 | $getimages2 = mysql_query($getimages); | ||
5 | while ($getimages3 = mysql_fetch_array($getimages2)) | ||
6 | { | ||
7 | ?><LI><?php echo($getimages3['title']); ?> - | ||
8 | <IMG SRC="/moderation/<?php echo($getimages3['id']); ?>.png" ALT="<?php echo($getimages3['text']); ?>" TITLE="<?php echo($getimages3['text']); ?>"> - | ||
9 | <A HREF="/admin/add.php?id=<?php echo($getimages3['id']); ?>">Add to Pending Queue</A> - | ||
10 | <A HREF="/admin/remove.php?id=<?php echo($getimages3['id']); ?>">Remove</A></LI><?php | ||
11 | } | ||
12 | |||
13 | ?></UL> | ||
14 | |||
15 | <A HREF="/admin/">Back to Admin</A> | ||