$dato=file_get_contents('http://api.twitter.com/1/users/show.xml?screen_name='.$nick);
if (preg_match('/followers_count>(.*)</',$dato,$set)!=0) {
$contador = $set[1];
do i need to use Oauth for get the followers_count?
Thanks in Advanced
Jose Zaragoza