i have txt file i need to read all lines from 3rd line onwards..
so this works for whole file....
$f = file("/somefile.txt");
foreach ($f as $list){
$bla = explode("||", $list);
echo" $bla[0]....etc etc...
}
but i only want 3rd line of txt file onwards??
J