Which library is used to generate XML files? I'm not sure which is used for reading, which for writing, xml vs xsl in terms of what their extensions do...
I have an xsl file that I use to format a group of xml files. I would like to use php to insert data from a database into an xml file using the correct elements which ive chosen.
You dont need any library to generate XML just use fwrite, fopen etc...
but to read XML the best library i've used is SimpleXML (comes standard with php5)
If you have msyql you can use the mysqldump --xml function...
from the command line:
mysqldump -u yourusername --xml youDB yourTable > pumptoXMLfile.xml
I think that's the proper syntax of the command, if not, google will find it for you.