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)
|