 |
Technical Reports
Publications by the faculty and students
\n";
while( $row = mysql_fetch_array( $result, MYSQL_NUM ) ) {
/* start a row */
print "\t | \n";
/* print TR number (if available), link (if available), authors, and title, in separate columns */
if ($row[1] == '')
printf( "\t\t| \n", $row[0], $row[1] );
else printf( "\t\t | TR-%s-%s\n", $row[0], $row[1] );
$url= name($row[6]);
if ($row[6] == '')
printf( "\t\t | \n");
else printf( "\t\t $url", $row[6] );
printf( "\t\t%s | \n", $row[2] );
printf( "\t\t%s | \n", $row[3] );
/* print link to citation and abstract, if present, in a separate column */
if ($row[4] == '')
printf( "\t\tno abstract\n", $row[4]);
else printf( "\t\t | abstract\n", $row[4]);
if ($row[5] == '')
printf( "\t\t no citation | \n", $row[5]);
else printf( "\t\t citation\n", $row[5]);
print "\t \n";
}
print " \n";
mysql_close($link);
?>
|