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
- Host: GitHub
- URL: https://github.com/mskian/php-rss-feed-generator
- Owner: mskian
- License: gpl-3.0
- Created: 2017-03-11T13:43:01.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2017-03-11T14:05:52.000Z (almost 9 years ago)
- Last Synced: 2024-12-29T21:14:10.618Z (about 1 year ago)
- Language: PHP
- Size: 15.6 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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