See if this works:
PHP Code:<?php
$file = file_get_content("http://z7.invisionfree.com/HabbosWorld_Forums/index.php");
eregi('Our members have made a total of <b>(.*)</b> posts<br>', $file, $totP);
eregi('We have <b>(.*)</b> registered members<br>', $file, $totM);
echo("<b>Forum Statistics:</b>");
echo("<br />Total Posts: ");
echo $totP[1];
echo("<br />Total Members: ");
echo $totM[1];
?>





Reply With Quote






