summary refs log tree commit diff stats
path: root/archive.php
diff options
context:
space:
mode:
authorStar Rauchenberger <fefferburbia@gmail.com>2009-02-22 13:15:37 -0500
committerStar Rauchenberger <fefferburbia@gmail.com>2009-02-22 13:15:37 -0500
commiteee98526c48b9154cd9e9bc8bc3e07769e6a39ea (patch)
tree9d8d719a2ccea91de86435ccd985241ddb3fa0cb /archive.php
parent653c7b3a488488d4b161a8fae41ada5851bf7685 (diff)
downloadpillowcase-eee98526c48b9154cd9e9bc8bc3e07769e6a39ea.tar.gz
pillowcase-eee98526c48b9154cd9e9bc8bc3e07769e6a39ea.tar.bz2
pillowcase-eee98526c48b9154cd9e9bc8bc3e07769e6a39ea.zip
Rewrote Pillowcase
NOTE: There is a new database schema now, so the database from the testing server has to be copied over to the production server, otherwise this code
will fail.
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?>