<?php
$firstmarkup = "[li.][co.lor=darkgreen]";
$secondmarkup = "[/col.or][link=http://users.ign.com/about/";
$thirdmarkup = "]";
$fourthmarkup = "[/link][/li]";
echo ("Member Update<br><br>[o.l]");
$names=file("names.txt");
for($i=0;$i<sizeof($names);$i++){
$fname="http://users.ign.com/about/".trim($names[$i]);
$userpage=fread(fopen($fname,"r"),100000);
eregi('Posts:</B> </td>
([ ])?<td class="BoardRowB">(.)? <a href(.*)?view latest posts', $userpage,$regs);
$mu[$names[$i]]=$regs[2];
}
arsort($mu, SORT_NUMERIC);
while(list($name,$pc) = each($mu)){
echo <<<END
$firstmarkup $pc $secondmarkup$name$thirdmarkup$name$fourthmarkup <br>
END;
}
echo ("<br>[/ol]<br>-TheStoneMonsteR's Super-Duper MU!");
?>