Ich möchte die Player daten in sql speichern weiss aber nicht wie.
so und nun schreibt er mir die daten hin:
print $matches[1] . '/' . $matches[2]; = die möchte ich speichern in einer datenbank weiss aber nicht recht wie =(
PHP-Code:
<?php
$info = chr(6).chr(0).chr(255).chr(255).'info';
$s = @fsockopen(AF_INET, SOCK_STREAM, getprotobyname('tcp'));
$s = @fsockopen('127.0.0.1', 7171);
fwrite($s, $info);
$a = '';
$data='';
while (!feof($s))
$data .= fgets($s, 1024);
{
$data .= $a;
}
fclose($s);
preg_match('/players online="(\d+)" max="(\d+)"/', $data, $matches);
print '<div style="font-size: 18; font-weight: bold; color: lime">tibia-rox.no-ip.com ONLINE</div>';
print '<div style="font-size: 11; font-weight: normal; color: green">Players: ';
print $matches[1] . '/' . $matches[2];
?>
print $matches[1] . '/' . $matches[2]; = die möchte ich speichern in einer datenbank weiss aber nicht recht wie =(