Project demonstrates the simple RSS FEED reader along with Codeigniter register and login forms using Codeigniter validations.
- Click here to see the live demo. (this is a temporary link)
- drop the project in your server.
- change the
base_url
inproject/application/config/config.php
. it can be your root directory or a directory in root directory.
$config['base_url'] = 'http://website.com/your-project-folder/';
- create database :
rss_feed
(you can give any name) - create
users
table
CREATE TABLE `users` (
`id` INT(10) UNSIGNED NOT NULL AUTO_INCREMENT,
`first_name` VARCHAR(45) DEFAULT NULL,
`last_name` VARCHAR(45) DEFAULT NULL,
`email` VARCHAR(32) NOT NULL,
`password` VARCHAR(32) NOT NULL,
PRIMARY KEY (`id`)
);
- database credentials : change the
hostname
,username
,password
,database
inproject/application/config/database.php
.
- Register and Login form validation with
ajax
(Codeigniter form validator) - Checking
email
on the fly - Feeds Page - Extract data from RSS feed and show it on the page
- Collecting 10 most repeating words to create a top-menu
- Listing feeds
- Filter feeds
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.