You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

8 lines
181 B

23 years ago
23 years ago
  1. <?php
  2. $books = simplexml_load_file('book.xml');
  3. //var_dump($books);
  4. $books = $books->book;
  5. foreach ($books as $book) {
  6. echo "{$book->title} was written by {$book->author}\n";
  7. }
  8. ?>