Rapidshare link checker
Example: http://kuzmanov.ws.mk/linkchecker.php<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
I made some improvement to this code :
first I add the trim function to get ride of line feed or spaces at the end of the links
:
$url = trim($url); #before $url = explode(" ", $url);
then i add option to view the size of the files :
$pos1 = strpos($rsurls,">| ");
$pos2 = strpos($rsurls," KB");
echo substr($rsurls, $pos1+3, $pos2-$pos1)." ";
# all lines right after if (preg_match("/FILE DOWNLOAD/", $rsurls)){
Very nice. It would be a cool addon to make it into a full-leech script? Like you add your URLS, it downloads the files, then mail()'s you the urls on the server once it is done, and also mails a delete URL? Would be amazing.