Forum Moderators: coopster
------------------------------------
<xml version="1.0">
<news>
<item>
<date>19720502</date>
<title>Title</title>
</item>
</news>
------------------------------------
<?php
$doc = new DOMDocument;
$doc->load('news/newsIndex.xml');
$doc->formatOutput = true;
$NewsItem = $doc->createElement('Item');
$NewsItem = $doc->appendChild($NewsItem);
$NewsDate = $doc->createElement('Date');
$NewsDate = $NewsItem->appendChild($NewsDate);
$DateValue = $doc->createTextNode('19720502');
$DateValue = $NewsDate->appendChild($DateValue);
$NewsTitle = $doc->createElement('Title');
$NewsTitle = $NewsItem->appendChild($NewsTitle);
$TitleValue = $doc->createTextNode('Test Title');
$TitleValue = $NewsTitle->appendChild($TitleValue);
$test = $doc->save("news/newstest.xml");
print 'done.';
?>
<?php
$doc = new DOMDocument;
$doc->load('news/newsIndex.xml');
$doc->formatOutput = true;$news = $doc->createElement('news');
$news = $doc->appendChild($news);$NewsItem = $doc->createElement('item');
$NewsItem = $news->appendChild($NewsItem);$NewsDate = $doc->createElement('Date');
$NewsDate = $NewsItem->appendChild($NewsDate);$DateValue = $doc->createTextNode('19720502');
$DateValue = $NewsDate->appendChild($DateValue);$NewsTitle = $doc->createElement('Title');
$NewsTitle = $NewsItem->appendChild($NewsTitle);$TitleValue = $doc->createTextNode('Test Title');
$TitleValue = $NewsTitle->appendChild($TitleValue);$test = $doc->save("news/newstest.xml");
print 'done.';
?>