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