Source Code:
(back to article)
<?php $xmlString = '<books><book><title>PHP Basics</title></book></books>'; $xml = simplexml_load_string($xmlString); foreach($xml->book as $book) { echo $book->title . "\n"; }
Result:
Report an issue