Meinst du sowas?
Das Script ruft deine Profilseite auf und wertet sie dann aus. Quellcode:
PHP-Code:
<?php
$h 
file('http://forum.rpg-ring.com/forum/member.php?s=&action=getinfo&userid=4739');
for (
$anz count($h), $i 0$i $anz$i++)
    if (
strstr($h[$i], 'helvetica" size="2"><b>Beiträge:'))
    {
    
$i++;
    
$buf strstr($h[$i], '"2">');
    
$buf substr($buf4);
    
$buf explode(' '$buf);
    
$currentposts $buf[0];
    
$daylyposts substr($buf[1], 1);
    break;
    }
if (
$currentposts == 0)
{
    print (
'Fehler');
    return;
}
$buf explode('.'$daylyposts);
$daylyposts $buf[0] + $buf[1] / 100;
print (
'dennis_meckel hat derzeit ' . (int)($currentposts) . ' Postingpunte. Bei ' $daylyposts ' Posts pro Tag wird er in ' . (1000 $currentposts) / $daylyposts ' Tagen 1000 Posts besitzen.');
?>
Ich hoffe, das war, was du wolltest.