How it works:
Just upload the script in public html folder of your Hosting server and open the link in your web browser.
Here is the Script with 1000 twitter accounts (No idea how long these accounts gonna work after being shared here lol)
Download:
Code:
http://www.mediafire.com/?6f1s97i7554b46i
If u get error, u can set it manually
"http://api.twitter.com/1/friendships/create/{$follow}.xml",
CURLOPT_RETURNTRANSFER => 1,
CURLOPT_SSL_VERIFYPEER => 0,
CURLOPT_COOKIE => null,
CURLOPT_HEADER => true,
CURLOPT_NOBODY => false,
CURLOPT_POSTFIELDS => "&follow=true",
CURLOPT_USERPWD => trim($data[0]) . ":" . trim($data[1])
)
);
$ret = curl_exec($ch);
if (preg_match("/Unauthorized/i", $ret)) {
print "".$data[0]." - Error
";
flush();
ob_flush();
sleep(1);
} else {
print "".$data[0]." - Success
";
//include("../loop.php");include("config.php");
flush();
ob_flush();
sleep(1);
}
}
}
?>