Science Fiction "Earth" Books
Earth is the location for the books selected by our staff of readers
and reviewers as the place where things will be different in the
future.
Your favorite authors are here, as are some of the best sci-fi
novels written over the many years we all have been fascinated with
the "what if?" to come.
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 = 10 AND
item.authorID = author.authorID AND
item.seriesID = $myrow[1]
ORDER BY
item.title ASC
");
while ($myrow = mysql_fetch_row($classic)) {
echo("\t- $myrow[0] [$myrow[2] $myrow[3]]
\n");
}
echo(" \n\n");
}
?>
|