Star Trek Voyager (VOY) Books
This section of the Star Trek Library is the home of not only the
Star Trek Voyager series, but The New Frontier, books from the now
cancelled Enterprise television series and Titan, the follow up
to The Next Generation, as well as anything else we can get our
hands on sent in by our loyal readers and reviewers.
As the writers in the Star Trek universe continue to produce new
storylines and expand the characters, places and events, the Outpost
Library will do our best to keep up with the amazing number of Star
Trek books that are published on an almost weekly basis. Not only
do the Star Trek novels take up alot of shelf space, but the constant
additions to the technical manuals, the special books dedicated
to planets, special events and anthologys just keep coming.
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 = 4 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");
}
?>
|