diff options
author | Star Rauchenberger <fefferburbia@gmail.com> | 2009-02-22 13:15:37 -0500 |
---|---|---|
committer | Star Rauchenberger <fefferburbia@gmail.com> | 2009-02-22 13:15:37 -0500 |
commit | eee98526c48b9154cd9e9bc8bc3e07769e6a39ea (patch) | |
tree | 9d8d719a2ccea91de86435ccd985241ddb3fa0cb /archive.php | |
parent | 653c7b3a488488d4b161a8fae41ada5851bf7685 (diff) | |
download | pillowcase-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.php | 23 |
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 | |||
3 | include('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); | ||
12 | while ($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 | |||
21 | include('footer.php'); | ||
22 | |||
23 | ?> | ||