thx man, i have read this but its very technical, and, for a begginer like me its difficult to understand everything 
So i think that my code is almost finished :
$out="";
$t = json_decode($tweet->get(‘followers/list’, array(‘screen_name’ => ‘monsieurdream’, ‘count’ => 2)), true);
foreach ($t[‘users’] as $user) {
$tweet->post(‘friendships/create’, array(‘screen_name’ => $user[‘screen_name’]));
$out = $out.“Username “.$user[‘screen_name’].” ID “.$user[‘id_str’].”
”;
}
echo $out;
// fichier qui garde en memoire
file_put_contents(‘followers.txt’, $out);
echo “done”;ode here
This, successfully print on my webpage the name and id of the 2 last follower of the account "monsieurdream", but i want to follow these 2 accounts and my :
$tweet->post(‘friendships/create’, array(‘screen_name’ => $user[‘screen_name’]));
; doesn't work, if you can help me a second time i will be very gratefull ! :slight_smile: