I disagree
Well I have set up 4 emails and 10 website. It worked like a charm for us. Guess it must be some isolated incident.
2 publicly visible posts • joined 18 Aug 2008
Well.. I guess the easier and bettor solution is to use "simpleXml" in PHP5. No need to enable or add it. The SimpleXML extension is enabled by default in PHP5.
Sample Usage:
if (file_exists('test.xml')) {
$xml = simplexml_load_file('test.xml');
echo "<pre>";
print_r($xml);
}
else {
exit('Failed to open test.xml.');
}
When printed, each node of the XMl can be access like this:
echo $xml->NodeName;
Best Regards,
Rochak Chauhan.