blob: 02fffbf2c0031401e1d6faac24f150a469e7e406 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<?php
include('header.php');
?> <H1>Archive</H1>
<UL ID="archive">
<?php
$getimages = "SELECT * FROM images ORDER BY id ASC";
$getimages2 = mysql_query($getimages);
while ($getimages3 = mysql_fetch_array($getimages2))
{
?> <LI><A HREF="/comic<?php echo($getimages3['id']); ?>.htm"><?php echo($getimages3['title']); ?></A></LI>
<?php
}
?> </UL>
<?php
include('footer.php');
?>
|