myersflamingo
New Member
I want to create a simple and customized follow button of my account for my blog.I wrote this for get followers count:\[code\]$value = http://stackoverflow.com/questions/15788012/file_get_contents("http://api.twitter.com/1/users/show.json?user_id=836411184");$pieces = explode('followers_count":', $value);$counter = explode(',', $pieces[1]);$followers_count = $counter[0];echo $followers_count;\[/code\]and this for made button ajaxed and dynamic: http://stackoverflow.com/a/3546455/2017834now i want to create button for that but i don't know how.