Code
<html><had></head><body>
<table>
<?php
$file = file('bla.txt');
foreach ($file as $line) {
echo '<tr>';
$linedata = split(';', $line);
foreach ($linedata as $x) {
echo '<td>'.$x.'</td>';
}
echo '</tr>';
}
?>
</table>
</body></html>
i dont like that programming style (i prefer template and php in separate files), but it should give you an idea how to do it

this will just display the info from the input file, if you want to add "kill", "death", "assists" you just have to add them accordingly (replace the "foreach $linedata as $x" part with direct outputs of the table cells).
This post was edited by tcl on Jun 13 2012 08:24pm