ok it seems not to work any1 know what im doing wrong...
here is what i got
<?
//---------------------Config starts here-----------------------------
$dir = "C:\\Documents and Settings\\GaNgStA\\Desktop\\HBServer 3.2"; // Use duble back slashes (\\) (Don't include the end "\\")
$servname_lenth =11 ; // How many characters is in your server name
$start = "There are currently "; // What it displays before the number
$end = " people on this server!"; // What it displays after the number
//-----------------------Code starts here-----------------------------
$lines = file($dir."\\GameServerLog".date("Ymd").".log"); // Puts all lines in the file into the $lines array
foreach ($lines as $line_num => $line) {
foreach ($lines as $line) {
$final = substr(substr($line, (35 + $servname_lenth),

, 0, -1);
}
}
echo $start.$final.$end;
?>