I'm writing to an xml file using PHP function SimpleXMLElement, the xml writes succesfully but is not well formatted, all data is in one line. i would like it to be something like these
<Shoe>
<brand>Nike</brand>
<type>Lebron</type>
<Release Date>2015/02/11</Release Date>
</Shoe>
here is my code, thanks in adavnce.
$xml = new SimpleXMLElement('<?xml version="1.0" encoding="utf-8"?><mydoc></mydoc>');
$xml->addAttribute('version', '1.0');
$xml->addChild('datetime', date('Y-m-d H:i:s'));
$person = $xml->addChild('Shoe');
$person->addChild('brand', 'Nike');
$person->addChild('type', 'Jordan');
$person->addChild('Release Date', '2014/05/21');
$person = $xml->addChild('Shoe');
$person->addChild('brand', 'Adidas');
$person->addChild('type', 'Stan Smith');
$person->addChild('Release Date', '2014/0/03');
$xml->saveXML("shoeOrder.xml");