Einzelnen Beitrag anzeigen
Alt 15.02.2006, 09:40   #3
jak
Inventar
 
Registriert seit: 13.06.2001
Beiträge: 1.830


Standard

Naja, wenn das sowieso jedes mal kommt, kannst du ja einfach ein fgets($text) davor schreiben:

...
$text=fopen($bt, 'r');
if (!feof($text)) fgets($text);
while (!feof($text)){
$a=fgets($text);
...

quick & dirty. Ansonsten kannst du fread verwenden.

jak
____________________________________
Join the DNRC | Godwin\'s Law (thx@stona)
Documentation is like sex: If it\'s good, it\'s very, very good. If it\'s bad, it\'s better than nothing.
\"In theory, theory and practice are the same. In practice, they are not\" (Lawrence Berra)
jak ist offline   Mit Zitat antworten