Get Total follower with Twitter API

It’s very easy. see the code. I recommend to use with XML for twitter api. XML feedback is more faster than json. <?php $toopen="http://twitter.com/users/show.xml?screen_name=saturngod "; $ch = curl_init(); /// initialize a cURL session curl_setopt($ch, CURLOPT_URL, $toopen ); curl_setopt ($ch, CURLOPT_RETURNTRANSFER, true); $content = curl_exec ($ch);//end get cool feedburner count curl_close($ch); $dom = new DOMDocument(); $dom->preserveWhiteSpace [...]

Get subscriber count with feedburner API

Today, I want to add feed count from feedburner , in my blog. So, I need to write code using feedburner api. It’s not easy. login your feedburner and go to your feed. Go to Publicize tag Go to Awareness Api and active it. Now, time for coding. change your id in uri of $toopen. [...]

Ornagai

Ornagai is a english to myanmar , myanmar to english dictionary. Ornagai use CodeIgniter PHP Framework, MySQL and apache. Ornagai is a specialize for Myanmar Search. It’s include Normalization system and syllable breaking system for Myanamar chracter. So, it will show same result က-ိ-ု (u1000u102Du102F) and က-ု-ိ (u1000u102Fu102D) because of normalization . ကိ (u1000u102D) result [...]

Apiwork

I gave my framework name is apiwork because it just design for api. I made api library for Google,Twitter, Facebook and I hope i will add more in my framework. It’s my private framework and it just use in my work. In the previous two week, I tooke a time for Google API with oAuth. [...]

Authsub vs oAuth

AuthSub Don’t need consumer key and secret oAuth Need consumer key and secret AuthSub Easy to use. oAuth need to knowledge about oAuth. AuthSub Session will expire. oAuth get the access token and secret and access all the time when untill user revoke the site. Authsub Use only in Google API. use for one time [...]