here i am again... the nickname problem aint solved yet and got another problem.
i noticed that a script i made to view my chathistory is "endless loop"
took lots of time to figure how to do this and i want this to be fixed, this page loads soooo slow and when i opened sourcecode it made 65k empty lines. heh
so, i think i need to limit the lines posted by the script but i dont know how.
PHP Code:
<div class="chathead">
<?php
$msg = file("admin/data/chat.txt");
$kill = count($msg);
$nmb = $_POST['messages'];
while ($msg != "" || $cccp < $nmb)
{
echo ($msg[$kill-$cccp] . "\n");
$cccp++;
}
die();
?>
</div>