<!doctype html public "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <title>TestChat - Ausgabe</title> <meta http-equiv="refresh" content="5"> </head> <body> <?php # Chatdatei komplett in ein Array einlesen $datei = file("chat.inc"); # Zeilen zaehlen $anz = count($datei); # die letzten 15 Zeilen ausgeben for($i = $anz - 15;$i < $anz; $i++) { # String teilen $teile = explode("#", $datei[$i], 2); echo "<b>", $teile[0], ":</b> ", $teile[1], "<br>"; } ?> </body> </html>