PHP-Code:
<?php
$rank = mysql_connect('host', 'name', 'password');
if (!$rank) {
die('keine Verbindung möglich: ' . mysql_error());
}
echo 'Verbindung erfolgreich';
$db_selected = mysql_select_db('ranking', $rank);
if (!$db_selected) {
die ('Kann ranking nicht benutzen : ' . mysql_error());
}
$datei = fopen('Statistics1.log','r');
while (!feof($datei))
{
$zeile = fgets($datei,1024);
$regex = "/^Playername *: /iU";
$regex1 = "/^Kills *: /iU";
$regex2 = "/^Deaths *: /iU";
if (preg_match_all($regex,$zeile,$matches,PREG_SET_ORDER))
{
foreach($matches as $match)
{
$input['playername'][] = $zeile;
}
}
if (preg_match_all($regex1,$zeile,$matches,PREG_SET_ORDER))
{
foreach($matches as $match)
{
$input['kills'][] = $zeile;
}
}
if (preg_match_all($regex2,$zeile,$matches,PREG_SET_ORDER))
{
foreach($matches as $match)
{
$input['deaths'][] = $zeile;
}
}
}
fclose($datei);
for ($i = 0; $i < sizeof ($input['playername']); $i++)
{
echo $input['playername'][$i].'<br>';
echo $input['kills'][$i].'<br>';
echo $input['deaths'][$i].'<br>';
}
?>
Verbindung erfolgreichKann ranking nicht benutzen : Access denied for user 'db130865_8'@'127.0.0.2' to database 'ranking'
und noch ne frage das hab ich bis jetzt noch nirgens gefunden was bedeutet dieses $i
@kropff : werd ich dann machen (email)
Kommentar