Hi,
In my php code I am selecting data from my database and the source code cretaed is an XML schema:
<?xml version="1.0"?>
<dataset>
<row>
<name>Test</name>
<category>2005-02-02</category>
</row>
<row>
<name>test 2</name>
<category>2005-02-02</category>
</row>
<row>
<name>test 3</name>
<category>2005-02-02</category>
</row>
</dataset>
Is there any way in PHP of dumping this into an external file?
thanks in advanced.