Skip to content

fwmiller/aggregation.co

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

29 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

aggregation.co

This code implements an RSS aggregator website using PHP. It requires the use of a database to hold information about RSS feeds.

The code uses SimplePie to collect RSS feeds that are then tucked into the database.

This code is currently used by the site http://aggregation.co

Database tables

CREATE TABLE feeds (

id int(11) NOT NULL,

displayColumn int(11) NOT NULL,

link varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL

) ENGINE=MyISAM DEFAULT CHARSET=utf8

CREATE TABLE items (

id int(11) NOT NULL,

feedTitle varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,

feedLink varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,

itemTitle varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,

itemPubDate varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,

itemLink varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,

itemDesc mediumtext CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL

) ENGINE=MyISAM DEFAULT CHARSET=utf8

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published