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

Translate or convert WordPress date/time/comment number to Bangla digit

Today I worked with a WordPress site Bangladesh Linux Users Alliance, which is a complete Bangla language based site. You can translate with the Bangla language pack, but you can’t convert the English digits to it’s corresponding Bangla digit. So I visited the WordPress codex and found some filters that can do that job very … Continue reading Translate or convert WordPress date/time/comment number to Bangla digit

punBB extension: Post Share

Hey folks, in a short time i’ve made some punbb extension. Here is another, it’s for sharing post. It inserts share button in every post, here is the screenshot: You will find the configuration at Administration β†’ Settings β†’ Features [download id=”12″ format=”1″] Enjoy πŸ™‚

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