<?php //load xml$books = simplexml_load_file('examples/books.xml');//loop through the booksforeach ($books->xpath("//title") as $title) { printf("Title: %s\n", $title); }?>