2
Hey there, guys, I’m trying to create an xml, but it returns me the error of the title, I googled and everything I saw about this was that I was missing root, however, I believe I’m using root, can help me?
$valorReal = 340.00;
$dom = new DomDocument("1.0", "ISO-8859-1");
$dom->preserveWhiteSpace = false;
$dom->formatOutput = true;
$root = $dom->createElement("AUTORIZACAO");
$total = $dom->createElement("TOTAL", $valorReal);
$root->appendChild($total);
$dom->appendChild($root);
header("Content-Type: text/xml");
echo "<xmp>" . $dom->saveXML() . "</xmp>";
Edit: Other suggestions to create an xml also suits me :)
Thanks, I’d seen it on a gringo video
– Krint