An open API service indexing awesome lists of open source software.

https://github.com/mskian/php-rss-feed-generator

PHP RSS Feed Generator With MYSQLI
https://github.com/mskian/php-rss-feed-generator

Last synced: 5 months ago
JSON representation

PHP RSS Feed Generator With MYSQLI

Awesome Lists containing this project

README

          

# PHP-RSS-Feed-Generator
PHP RSS Feed Generator With MYSQLI

Generate RSS Feed From PHP/MYSQL

- Create New Database
- Run this Below SQL Query on the Table

create table site_feed

(
id int not null auto_increment primary key,
title varchar(300),
link varchar(300),
description varchar(300)
)

- it creates a four rows = id, title, description, and link
- Now open db.php file and add your Database credits
- Now open feed.php for small modification you find this below lines

```YOUR SITE TITLE
YOUR SITE LINK
YOUR SITE DESCRIPTION```

- replace it with your site title, site link & description
- now save the changes
- Open PHPMYADMIN and Insert the post/page, title. Link, Description on your Database table that you want to display on your RSS FEED page

RSS FEED LINK - www.example.com/feed.php