Just wondering if anyone can point me in the direction of some tips / a script that will help me create an XML from an original CSV File, using PHP.
Cheers
The code given above creates an XML document, but does not store it on any physical device. So replace echo $doc->saveXML(); with
echo $doc->saveXML();
$strxml = $doc->saveXML(); $handle = fopen($outputFilename, "w"); fwrite($handle, $strxml); fclose($handle);