↧
Answer by Rohit Choudhary for Encoding Error in PHP script to generate XML
You can use DomDocument class. I think what you are using is an old way. Please loo at following link.http://php.net/manual/en/class.domdocument.php
View ArticleEncoding Error in PHP script to generate XML
I'm having problems with my PHP file that generates XML from MySQL database. The code is below<?phprequire("decibelone_dbinfo.php");function parseToXML($htmlStr){...
View Article