Display Twitter Count for a specific screen name

<?php $url = "http://api.twitter.com/1/users/show.json?screen_name=Hi_Im_Si&include_entities=true"; $feed = file_get_contents($url); $twitter_decoded = json_decode($feed); echo $twitter_decoded->followers_count; ?>

Be the first to comment

You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.