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

KB Free PHP Scripts

KB PHP Scripts offers you easy to use and implement Free PHP Scripts for download! Here, you can download various easy to use scripts. Also, you can rate and review these free scripts here. Though these scripts are Free but I may provide support for them, if I get some free time. Please feel free … Read more

Find and remove similar or duplicate content using PHP

Often we want to search, find or remove duplicate and similar content from our data base containing articles, text, messages etc. It is easy to do so manually if you have only 100 or so records in your database. But to handle large number of records it is bit time consuming and for even more … Read more

Download and Install Free PHP Scripts

PHP is one of the most popular web languages to develop websites. All kinds of websites can be created using PHP. Daily new developers are joining the PHP community and learning concepts of PHP. There are various PHP scripts support forums and basic codes sites available which have basic PHP scripts. These basic PHP scripts … Read more