Files
archived-presentations/slides/php5xml2/simplexml.php
2005-05-16 23:53:57 +00:00

10 lines
296 B
PHP

<?php
/* load a xml file to memory & parse it */
$xml = simplexml_load_file(dirname(__FILE__) . '/thedata.xml');
/* We are done, output time */
foreach ($xml->item as $msg) {
echo "Title: <a href='{$msg->link}'>{$msg->title}</a> (id: {$msg['id']})
<br />Body: {$msg->description}<hr />";
}
?>