Files
archived-presentations/slides/php5xml/simplexml.php
Ilia Alshanetsky bc1df0f093 PHP|Works talks.
2004-10-13 14:53:59 +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 />";
}
?>