How to parse hashtag, mention and URL in a tweet
I was trying to make a simple twitter application. Using jQuery and AJAX, grabbing twits was not that hard. But twitter returns twit in just simple characters. I needed to show the correct link for …
My personal ramblings
I was trying to make a simple twitter application. Using jQuery and AJAX, grabbing twits was not that hard. But twitter returns twit in just simple characters. I needed to show the correct link for …
Out of several awesome features of new PHP 5.4, built-in web server is most impressive. It runs from command line and it can be used in any OS like Windows, Mac or Linux. PHP manual …
In 1st March 2012, new version of PHP has been released. Some awesome features has been added whereas some deprecated functionalities are removed. Lets discuss about the new interesting features of PHP 5.4. Traits : …
Twitter is one popular micro blogging social networking website. ‘Tweet’ of upto 140 characters can be post in twitter. More than 200 million tweets are being twitted every day in the world. For developers it …
Sometime we need to delete all contents in the directory whether it is any files or directory. At that time this function will be handy to fulfill our need. It empties the folder recursively, that …
PHP has default mail() function for sending mail. We can easily send mail using this function passing few parameters. But there is one nice class named ‘PHPMailer’ extending that function with lots of attractive and useful features. This …