<?php
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
require_once 'promoter.php';
$p = new promoter(array(
"login" => "denis_2010p",//Login
"password" => "", // pass
"equal" => "Hdonoho",// Search new followrs by this keyword
"file_p" => dirname(__FILE__)."/", // file path for storing new followers to prevent following again
"limit" => 10, // limit Warning don't user more 100 .. twitter can ban your account
"if_has" => 0 // Follow if follower has (int) followers
));
//Let's Prepare list of New followers
$p->prepere_users();
// Here we starting to Follow
$p->begin_follow();
$p->Re_check_folowers();
//echo $p->getFollowers("Hdonoho") ;
?>