PHP class for sending, receiving and checking SMS status with GrameenPhone’s Aloashbei API

I saw everyone is participating in the GrameenPhone Aloashbei API contest and it’s began and I am late :P. So why not doing something that makes other’s life easy? So I decided to make a PHP class to do that job for you. You don’t need to know how to work with SOAP. Just instantiate … Continue reading PHP class for sending, receiving and checking SMS status with GrameenPhone’s Aloashbei API

Grab your Google Buzz Status

Here’s how you can get your google buzz status with php. Just put your google username at the right place and do whatever you want. We have used simpleXML to parse the google’s RSS feed for every user. 🙂 [php] <?php $user = "<username>"; $url = "http://buzz.googleapis.com/feeds/".$user."/public/posted"; $data = file_get_contents($url); $xml = new SimpleXMLElement($data); $status … Continue reading Grab your Google Buzz Status