Hello, I'm writing after a long time inactive times back.
I have a question.
How read text out of a file and then paste it into the correct column?
(These are the columns)
Click image for larger version. 

Name:	Unbenannt1.PNG 
Views:	17 
Size:	2.4 KB 
ID:	468
This is my script
Code:
 <?php
$datei=fopen("spiele-b.txt","r+");
while(!feof($datei))
{
$zeile = fgets($datei,1000);
echo $zeile."<br>";
}
fclose($datei);  
?>
The first column of the first set no longer works at "home" but afterwards.
It should come at the end of it as out.
(In the last image, the clubs and days are entered manually by "<td> </ td>". )
Click image for larger version. 

Name:	Unbenannt.PNG 
Views:	18 
Size:	9.5 KB 
ID:	469

Big thanks for help after
Greets STAUFFi