Quantcast
Channel: Creating a simple RSS from dynamic content in PHP - Stack Overflow
Browsing all 2 articles
Browse latest View live

Answer by Nigel Ren for Creating a simple RSS from dynamic content in PHP

You may have to adjust the way this is built up, but it is simply an extension of what you currently have...$xml = simplexml_load_string($xml_data->asXML());$channel =...

View Article


Creating a simple RSS from dynamic content in PHP

I am creating a simple RSS with dynamic content in PHP and I am using following code:PHP Code:$doc = new DOMDocument('1.0');$doc->formatOutput = true;$root = $doc->createElement('rss');$root =...

View Article
Browsing all 2 articles
Browse latest View live