App Inventor for Android

App Inventor for Android Create apps for your phone! Creating an App Inventor app begins in your browser, where you design how the app will look. Then, like fitting together puzzle pieces, you set your app’s behavior. All the while, through a live connection between your computer and your phone, your app appears on your … Read more

.co domain extension completes 1 year

After the launch of .co extension in the domaining world many have acquired premium domains with .co. Over the period of 1 year not only big brands and companies but small cos as well have gone .co. .co have provided them the identity which .com was not able to due to short of available domain. … Read more

How to read an RSS Feed using PHP

There are many ways 2 read XML Feed using PHP. Some basic ways with which this can be done are given below along with code: Basic Way 1 [php] <?php function getFeed($feed_url) { $content = file_get_contents($feed_url); $x = new SimpleXmlElement($content); echo "<ul>"; foreach($x->channel->item as $entry) { echo "<li><a href=’$entry->link’ title=’$entry->title’>" . $entry->title . "</a></li>"; } … Read more

Captcha PHP Script

About (in brief) It does not require images but works on text. Now you can protect your pages with the use of Captcha, you can now have some additional security/authetication/nospam to your web pages. Description An easy to implement Captcha Script which does not require images but works on text. Now you can protect your … Read more

Block Words PHP Script

About (in brief) Restrict certain words from being used at any place while registration, form filling and many other areas. It can be used at the places where you want to restrict the use of certain words like that of organisation related, admin related etc. Description Stop Vulgarity or Block Words is a PHP script … Read more

Affiliate Referral PHP Script

About (in brief) The user after login can send invitations his/her friends, only a limited number of invitations can be send daily by the user depending on the maximum number of invitations set by you (default is 10). Description User after login can send invitations to his/her friends, only a limited number of invitations can … Read more