diff options
Diffstat (limited to 'admin/manage.php')
-rw-r--r-- | admin/manage.php | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/admin/manage.php b/admin/manage.php new file mode 100644 index 0000000..2485520 --- /dev/null +++ b/admin/manage.php | |||
@@ -0,0 +1,15 @@ | |||
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> | ||