Hey I need help I need code to get the 5 last lines.. not the first 5 lines!!
-Steven AIM: aenirtower
$stuff = array_reverse(file($fn));
foreach (range(0,4) as $item) { echo $item . ": " . $stuff[$item] . "\n"; }
Try dat