mirror of
https://github.com/php/presentations.git
synced 2026-03-24 07:32:11 +01:00
8 lines
180 B
PHP
8 lines
180 B
PHP
<?php
|
|
$books = simplexml_load_file('presentations/slides/php5intro/book.xml');
|
|
|
|
foreach ($books->book as $book) {
|
|
echo "{$book->title} was written by {$book->author}<br>\n";
|
|
}
|
|
?>
|