Poetry
"; if (!$kysely = mysql_query("select author, name, id from poems order by author, name")) { print "There was a Grave Error"; } else { while($binfo = mysql_fetch_row($kysely)) { print "". $binfo[0]. " : " . $binfo[1]."
"; }} ?>
Fiction
"; if (!$kysely = mysql_query("select author, title, id from books where type ='fiction' order by author")) { print "There was a Grave Error"; } else { while($binfo = mysql_fetch_row($kysely)) { print "". $binfo[0]. " : " . $binfo[1]."
"; }} ?>
Fact
"; if (!$kysely = mysql_query("select author, title, id, is_part from books where type ='fact' order by author")) { print "There was a Grave Error"; } else { while($binfo = mysql_fetch_row($kysely)) { print "". $binfo[0]. " : " . $binfo[1]."
"; }} ?>