blob: c1cd8abb6b151cd4fb278d00f2e10c3b46bc3de8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<H1>Archive</H1>
<UL ID="archive">
<?php
$getcomics = "SELECT * FROM comics WHERE status = \"publish\" ORDER BY comic_id ASC";
$getcomics2 = mysql_query($getcomics);
while ($getcomics3 = mysql_fetch_array($getcomics2))
{
?> <LI><A HREF="/comic<?php echo($getcomics3['comic_id']); ?>.htm"><?php echo($getcomics3['title']); ?></A></LI>
<?php
}
?> </UL>
|