summary refs log tree commit diff stats
path: root/admin/manage.php
diff options
context:
space:
mode:
authorStar Rauchenberger <fefferburbia@gmail.com>2009-02-21 18:05:42 -0500
committerStar Rauchenberger <fefferburbia@gmail.com>2009-02-21 18:05:42 -0500
commitd0601a55010cd9fe2f2587ce157ce059e5da732e (patch)
tree6c56f73f6d2dfa1bbaab5c053321458014709377 /admin/manage.php
parent877fa5a38fefe2bdd0e00768b6ec4b52a81d7a69 (diff)
downloadpillowcase-d0601a55010cd9fe2f2587ce157ce059e5da732e.tar.gz
pillowcase-d0601a55010cd9fe2f2587ce157ce059e5da732e.tar.bz2
pillowcase-d0601a55010cd9fe2f2587ce157ce059e5da732e.zip
Started admin panel
Diffstat (limited to 'admin/manage.php')
-rw-r--r--admin/manage.php15
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);
5while ($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>