SimpleXML and write to attributes
simplexml_write.php:
<?php 
//load xml
$books simplexml_load_string('<root/>');
//loop through the books

$books['rootID'] = "ThisIsMyId";

print 
htmlentities($books->asXML());


?> 

 
SimpleXML and write to attributes © copyright 2004  Bitflux GmbH