Recent Posts
- PHP tip: How to get number of followers from your Twitter account
- Sphinx and SphinxSE
- Howto quickly theme the Drupal 6 search form
- Inservio launched CakeForum
- Build your own .deb packages
Categories
Tag: PHP
PHP development.
27Jun
PHP tip: How to get number of followers from your Twitter account
Here is a simple solution to get the number of followers from your twitter account:
$twitterUsername = 'yourusername'; $countTwitterFollowers = file_get_contents("http://twitter.com/statuses/user_timeline/" . $twitterUsername .

