<?php header('Content-Type: text/html; charset=UTF-8'); error_reporting(0); $data = file("/var/log/icecast2/playlist.log"); $n = 9; $data2 = array_slice($data, -9, $n); $result = array_reverse($data2); for($i=0;$i<$n;$i++){ echo"<table align=\"\" width=\"700\" bordercolor=\"#000\" border=\"0\" cellpadding=\"0\" rules=\"\">" ; $mass = explode("|",$result[$i]); $rest = substr($mass[0], -14, 8); echo "<td width='65px'><b>$rest</b></td>"; echo "<td>$mass[3]</td>"; echo "<tr>"; echo "</table>"; } ?>