\n";
echo "
\n";
echo " Mathematical Research Branch Publications ";
@$db = pg_Connect("", "", "", "", "pubs");
$DataSet = pg_Exec($db,"SELECT * FROM pubs ORDER by year DESC,key DESC");
echo "LBM/MRB Publications
";
echo "If you would like to order reprints of any publication listed below";
echo " go to our order page.";
echo "
";
echo "| Year | Authors | Title | Journal | Number |
";
$NumRows = @pg_NumRows($DataSet);
$Count = 0;
while($Count < $NumRows)
{
$year = @pg_Result($DataSet,$Count,"year");
$authors = @pg_Result($DataSet,$Count,"authors");
$title = @pg_Result($DataSet,$Count,"title");
$journal = @pg_Result($DataSet,$Count,"journal");
$number = @pg_Result($DataSet,$Count,"number");
$authors = htmlentities($authors);
$title = htmlentities($title);
$journal = htmlentities($journal);
print "| $year | $authors | $title | $journal | $number |
\n";
$Count++;
}
print "
";
print "
Back to LBM homepage";
?>