A
Anonymous
Guest
Hello,
I have been scouring the Internet looking for a tutorial on how to create new XML files using DOM and PHP5. I have found somethings, but have not been able to get them to work correctly. All I want to be able to do is create a simple xml file that i can save onto my computer that is created via PHP 5. For instance something that possibly looks like this:
Again I want to be able to create this from scratch, and not read it in from another file. Thanks any help is greatly appreciated.
I have been scouring the Internet looking for a tutorial on how to create new XML files using DOM and PHP5. I have found somethings, but have not been able to get them to work correctly. All I want to be able to do is create a simple xml file that i can save onto my computer that is created via PHP 5. For instance something that possibly looks like this:
Code:
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
- <echo_xml_setup_file>
- <Summary>
<TotalRecords>1</TotalRecords>
<TotalAccepted>0</TotalAccepted>
<TotalRejected>0</TotalRejected>
<DocumentRejected>0</DocumentRejected>
<FileType>1</FileType>
</Summary>
</echo_xml_setup_file>
Again I want to be able to create this from scratch, and not read it in from another file. Thanks any help is greatly appreciated.