↧
Answer by Oussama Ben Ghorbel for add RSS feed dynamically using php
I solved it my self here is the code below: $rssfeed = '<?xml version="1.0" encoding="ISO-8859-1"?>'; $rssfeed .= '<rss version="2.0">'; $rssfeed .= '<channel>'; $rssfeed .=...
View ArticleAnswer by Joe Black for add RSS feed dynamically using php
According to RSS Feeds for Instant Articles:Remember to escape all HTML content by wrapping it within a CDATA section.So, just wrap the HTML content of content:encoded with <![CDATA[ and...
View Articleadd RSS feed dynamically using php
I have a set of articles in database I want to add their content to a file located in my project named rss.xml using the xml format.This is the xml file from...
View Article