Could you do an explode on the line? for example:
$file = file("./yourtextfile.txt");
foreach ($file as $line) {
$line = explode(" ",$line);
echo "$line[0],$line[1],$line[2],$line[3],$line[4],$line[5],$line[6],$line[7],$line[8]";
echo ",$line[9],$line[10],$line[11],$line[12],$line[13],$line[14]";
}
which would output a line with each value seperated by a comma, but you can change that to put it in a table or however you want.