Tag Archives: php

Track Your Favorite Topic on Twitter: A PHP CLI Tool

Here’s a little php utility that will let you watch the Twitter public time line for your favorite topic. This is specially helpful for those who want to build some tracking application on the basis of the twitter streaming APIs. … Continue reading

Tagged , | 5 Comments

PHP: Setting the include_path for quick includes

PHP being the first language I loved and used for a long time, I now use it for all sorts of purposes. I also love and use Python but very often I end up coding in php because I am … Continue reading

Tagged | 1 Comment

A PHP Mailer Class

UPDATE: Added application of the basename() function to the attached filenames to get the filenames only. This php class lets you attach multiple files and send emails via Postfix without digging into the messy headers <?php class Mailer { function … Continue reading

Tagged , | 2 Comments

My First WordPress Theme: maSnun.com gets a new look!

It’s been a really long time I have been with WordPress I installed wordpress first on a separate sub-domain and liked the power and flexibility of WP. Later I moved the installation directly to http://masnun.com . During this period, I … Continue reading

Tagged , | 2 Comments

Google's Text to Speech API : A PHP Wrapper Class

It’s really amazing how Google is providing cool APIs for every this and that! And here comes another one that impressed me I am talking about the Text To Speech API by Google. It’s fantastic! I wrote a php wrapper … Continue reading

Tagged | 10 Comments

FeedParser: A PHP Class for Quick Feed Parsing

Well, it doesn’t require any further explanation — we the web developers know how often we need to parse feeds. It’s a very common practice to use SimpleXML for parsing feeds. But today Hasin vai (Hasin Hayder) showed me a … Continue reading

Tagged | 1 Comment

jQuery with PHP

I am learning jQuery these days and here’s the source code of a php script that uses jQuery on the client side. I have mainly demonstrated jQuery here. PHP has been used to manipulate desired number of paragraphs quickly You … Continue reading

Tagged , , | 4 Comments

My First WordPress Plugin: GAF Text Link

Updates: The plugin has been listed on the GetAFreeLancer.com Affiliates page with a link back to this page. https://www.getafreelancer.com/affiliates/ . They also left a gift for me… Thanks to the GAF authority! Version 1.1 has been completed and been submitted … Continue reading

Tagged , | 22 Comments

Pen Drive Content Copier with PHP: The Source Code

Nothing much to say. I am writing a PHP program that is intended to monitor for the availability of a directory and copy all data of that directory into another directory. It still needs huge improvements, testing and bug fixing. … Continue reading

Tagged | 3 Comments

Calling system() on PHP

PHP is no longer just a scripting language for web automation. It has grown very rapidly and now holds the position of the 3rd most popular programming language worldwide. PHP is now being widely used for CLI programs and even … Continue reading

Tagged | 1 Comment