├── LICENSE ├── README.md └── main.php /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2018 e 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # RSS-Reader 2 | ## What is RSS-Reader? 3 | A modular RSS reader made in php which allows users to easily add and remove rss feeds. 4 | ## Features 5 | + Ability to easily add RSS feeds via the array in the php file. 6 | + Frontend is in html which allows RSS Reader to be used on devices that are slow and outdated. 7 | + Colors are easy on the eye and allow for night reading. 8 | + Automatically handles invalid rss feeds 9 | + Beginning division allows for users to see the last time the page was updated. 10 | + Front end features tabs which divide difference genres to allow for easier navigation. 11 | + "General Overview" tab shows top three results from each rss feed allowing users to quickly view all RSS sources 12 | ## Screenshots 13 |  14 |  15 |  16 |  17 | -------------------------------------------------------------------------------- /main.php: -------------------------------------------------------------------------------- 1 | 67 |
'.$article['description'].'
'; 102 | } 103 | echo ''; 104 | if(!empty($article['pubDate'])) { 105 | echo 'Date of publish: '.$article['pubDate'].'
'; 106 | } 107 | echo ''.$article['description'].'
'; 132 | } 133 | echo ''; 134 | if(!empty($article['pubDate'])) { 135 | echo 'Date of publish: '.$article['pubDate'].'
'; 136 | } 137 | echo '