You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser.
-
M
<?
$output = "http://merciless.pcriot.com/index.html";
function FetchRanks($url) {
$filepointer = fopen($url,"r");
if($filepointer){
while(!feof($filepointer)){
$buffer = fgets($filepointer, 4096);
$file .= $buffer;
}
fclose($filepointer);
} else {...