demo_func_simplexml_load_file3.php:
<!DOCTYPE html> <html> <body> <?php $xml=simplexml_load_file("note.xml"); echo $xml->getName() . "<br>"; foreach($xml->children() as $child) { echo $child->getName() . ": " . $child . "<br>"; } ?> </body> </html>