↧
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 ArticleCreating 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
More Pages to Explore .....