Hello,
How do I write to an XML file (in that specific format?)
This is the XML file I want to make:
I want to scan my RSS feed and then write to my XML file (I know how to save it using the domelement. I want to know how to place the content in that format of the xml above also I must be able to append to the XML file as it will grow as I get info more articles.)
I have the variables already $header, $description $date and $link just need to get them into the XML file.
Hope it makes sense.
How do I write to an XML file (in that specific format?)
This is the XML file I want to make:
PHP:
<?xml version="1.0" encoding="iso-8859-1"?>
<articles>
<article>
<header>{{Article heading}}</header>
<description>{{Article description}}</description>
<date>{{Article date}}</date>
<link>{{Article url}}</link>
</article>
</articles>
I want to scan my RSS feed and then write to my XML file (I know how to save it using the domelement. I want to know how to place the content in that format of the xml above also I must be able to append to the XML file as it will grow as I get info more articles.)
I have the variables already $header, $description $date and $link just need to get them into the XML file.
Hope it makes sense.
Last edited: