Marvel Comic Books
Marvel Comics is an American comic book line published by Marvel Entertainment, Inc. Affectionately called the House of Ideas by the fan press, Marvel's best-known comics titles include Fantastic Four, The Amazing Spider-Man, The Incredible Hulk, Iron Man, Daredevil, Thor, Captain America, and X-Men. Most of Marvel's fictional characters reside in the Marvel Universe. Since the 1960s, it has been one of the two largest American comics companies, along with DC Comics.
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 = 40 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");
}
?>
|