DC Comic Books
DC Comics is one of the largest American companies in comic book and related media publishing. A subsidiary of Time Warner, DC is responsible for such famous characters as Superman, Batman, Wonder Woman, Green Lantern, The Flash, Aquaman and their teammates in the Justice League. For decades, DC Comics has been one of the two largest American comic book companies, along with the Marvel Comics. The initials "DC" were originally an abbreviation for Detective Comics, and later the official name.
while ($myrow = mysql_fetch_row($series)) {
echo("$myrow[0]");
echo("\n\n");
$classic = mysql_query("
SELECT
item.title,
item.filename,
author.firstName,
author.lastName
FROM
library_item as item,
library_author as author
WHERE
item.subgenreID = 41 AND
item.authorID = author.authorID AND
item.seriesID = $myrow[1]
ORDER BY
item.seriesNumber ASC,
item.title ASC
");
while ($myrow = mysql_fetch_row($classic)) {
echo("\t- $myrow[0] [$myrow[2] $myrow[3]]
\n");
}
echo(" \n\n");
}
?>
|