I'm trying to learn how to modify xml using simple xml.
This is my code:
<?php
// modifying content
$xml = "<root><node1>content</node1></root>";
$sxe = new SimpleXMLElemant($xml);
$dom = dom_import_simplexml($sxe);
$dom->appendChild(new DOMElement("node2", "content2"));
print $sxe->asXML();
?>
This is the error message:
Fatal error: Class 'SimpleXMLElemant' not found in C:\xampp\htdocs\Erik_form\modify.php on line 4
Looking at phpinfo() doesn't show me anything useful. I wonder is SimpleXMLElemant() depricated or something?