|
Publications (co-)authored by John Enyeart with students in the Biophysics program
$lastyear=0;
$numberofpubs=1;
while($pub_row=mysql_fetch_array($pub_query_result)) {
$errorstring=getPubInfo($pubmeddata, $pub_row, $db);
if (strlen($errorstring)) {
exit($errorstring);
}
if ($showyears && $lastyear!=$pubmeddata['Year']) {
$lastyear=$pubmeddata['Year'];
echo(' | ' . "\n");
echo('' . $lastyear . " | \n");
$numberofpubs=1;
}
echo('[' . $numberofpubs++ .
'] | ');
printPublication($pubmeddata);
echo(" | \n\n");
}
?>
|