summary refs log tree commit diff stats
path: root/archive.php
diff options
context:
space:
mode:
Diffstat (limited to 'archive.php')
-rw-r--r--archive.php23
1 files changed, 0 insertions, 23 deletions
diff --git a/archive.php b/archive.php deleted file mode 100644 index 02fffbf..0000000 --- a/archive.php +++ /dev/null
@@ -1,23 +0,0 @@
1<?php
2
3include('header.php');
4
5?> <H1>Archive</H1>
6
7 <UL ID="archive">
8<?php
9
10$getimages = "SELECT * FROM images ORDER BY id ASC";
11$getimages2 = mysql_query($getimages);
12while ($getimages3 = mysql_fetch_array($getimages2))
13{
14?> <LI><A HREF="/comic<?php echo($getimages3['id']); ?>.htm"><?php echo($getimages3['title']); ?></A></LI>
15<?php
16}
17
18?> </UL>
19<?php
20
21include('footer.php');
22
23?>