Archives
Twitter
- Installing two versions of Netbeans. 6.8 for PHP. 6.9 for Java! 2 hours ago
- Passing time on #php room on FreeNode IRC.... 12 hours ago
- Just updated my website front page :- http://masnun.com :) 13 hours ago
- http://stackoverflow.com/questions/1285871/problem-with-ie-using-960-gs 15 hours ago
- @neotushar ID: masnun . Server: FreeNode. Usual Rooms: #codeigniter & #kohana so far :) 1 day ago
- Chatting on IRC for the first time... The place of geeks... :) 1 day ago
- Maradona lost his job! :) 1 day ago
- @djseleem Call me tomorrow. 3 days ago
- Google Search Cheat Sheet -- http://www.google.com/help/cheatsheet.html 3 days ago
- Search Google for Recursion and It will suggest Recursion back -- http://bit.ly/biO4Um :D 3 days ago
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 php, twitter
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
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 email, php
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 php, wordpress
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 php
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
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 javascript, jQuery, php
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 php, wordpress
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 php
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