Skip to content

sbcampana/aggregation.co

 
 

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,

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

Languages

  • HTML 37.7%
  • CSS 23.4%
  • PHP 22.2%
  • JavaScript 16.6%
  • Ruby 0.1%
  • PowerShell 0.0%