Skip to content

Instantly share code, notes, and snippets.

@batuhan
Created August 21, 2011 20:18
Show Gist options
  • Save batuhan/1161098 to your computer and use it in GitHub Desktop.
Save batuhan/1161098 to your computer and use it in GitHub Desktop.
twitter follow /for erdinç
<?php
include 'twitter.class.php'; // http://svn.strawp.net/lib/twitter.class.php
$tw = new TwitterClient();
$users_to_follow = 'batuhanicoz,razyocom,kaloglu,razyocom';
$users = explode(',', $users_to_follow);
foreach($users as $user){
$tw->follow($user);
}
echo 'should be followed every user on the list';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment