Third Biological Diffusion and
Brownian Dynamics Brainstorm: BDBDB3
last modified: " . date ("F d Y H:i:s.", filemtime($filename));
$row = 1;
$file = fopen($filename, "r");
echo "";
$cols="| ";
$cole=" | ";
$intern = $_GET['hits'];
while (($data = fgetcsv($file, 16000, "\t")) !== FALSE) {
$num = count($data) -1 ;
$row++;
echo "";
if ($row > 2) {
$cols="| ";
$cole=" | ";
}
for ($c=0; $c < $num; $c++) {
# if ($c == 11 || $c == 13 || $c== 15) {
echo $cols . $data[$c] . $cole . "\n";
# }
# if ($intern ==1 && ($c == 14 || $c == 16 || $c == 17 || $c == 18)) {
# echo $cols . $data[$c] . $cole . "\n";
# }
}
echo "
";
}
fclose($file);
echo "
";
} else {
echo "No participant data available";
}
?>