Is there anything wrong with that code? When I run the code it returns nothing.PHP Code:function Bandwidth() {
$page = @file_get_contents('https://ssl.rapidshare.com/cgi-bin/premiumzone.cgi?login=USERNAME&password=PASSWORD');
$splitx = split("5 days you have downloaded <b>", $page);
$splitx2 = split(" </b>." , $splitx[1]);
$result = $splitx2[0];
if ( $result == "" ) {
return "Unknown Error!";
}else{
return $result;
}
}
Bandwidth()




Reply With Quote