Hey all,
I'm trying to play around with some XML stuff and (to start with) get this code fragment up and running ...
$dom = new DOMDocument('1.0', 'iso-8859-1');
echo $dom->saveXML();
but .. whenever I try to run it all I get is "Fatal error: Class 'DOMDocument' not found in ..."
From reading the docs I was under the impresison the DOM XML stuff was part of the core, so where am I going wrong ?
TIA
Chris