Hjælp til det her.....
Mit problem er at den vil ikke vise noget array
$fil =fopen("chat.txt", "r");
while (!feof($fil)) {
$ss =fgets($fil, 9999);
}
$x =1;
$sim =explode(":", $ss);
$lin[] =$sim[0];
$nl= count($lin);
for ($eh =$nl-1; $eh>0;$eh--) {
echo "<tr id='chat'>
<td>--></td>
<td>$lin[$eh]</td></tr>";
}
fclose($fil);
M.V.H
Simon Jensen