Workshop "Kernel Methods in Bioinformatics"
Participants
$link = mysql_connect ("localhost","bioadmin", "biopass");
mysql_select_db("bio",$link);
$Result = mysql_query("SELECT * FROM REGISTRATION",$link);
echo "";
echo "Nb | Name | Institution | Country |
";
$i = 1;
while ($Row = mysql_fetch_row($Result))
{
printf ("%d | %s | %s, %s | %s |
",
$i++,$Row[0], $Row[3] , $Row[4] , $Row[8]);
}
echo "
";
?>
Back to the workshop's homepage