Source Code:
(back to article)
<?php $xml = new SimpleXMLElement('<book></book>'); $xml->addAttribute('isbn', '123456789'); $xml->addChild('title', 'PHP Basics'); $xml->addChild('author', 'John Doe'); echo $xml->asXML();
Result:
Report an issue