RDF Processing
<?php
$rdf 
simplexml_load_file('presentations/slides/php5intro/rss_feed.rdf');
?>
<table border="1" cellspacing="0" cellpadding="0" bordercolor="#0000FF">
<tr>
    <td>
<table border="0" cellspacing="0" cellpadding="4">
<tr>
    <td style="background-color:blue; color:white;">
    <?php echo $rdf->channel->title?>
    </td>
</tr>
<?php
foreach ($rdf->channel->item as $item) {
?>
<tr>
    <td>
    <a href="<?php echo $item->link?>"><?php echo $item->title?></a>
    </td>
</tr>
<?php
}
?>
</table>
    </td>
</tr>
</table>
Output
PHPBuilder.com New Articles
Regression Testing With JMeter
Advanced Image Editing Under the GD Library
The Benefits of Using Objects with Databases
Interfacing with COM objects under Windows
Dynamic XML Conversion Using the SAX Parser
Arrays 101
Introduction to PHP5
Installing PHP-GTK on Linux
Installing PHP under BadBlue Web Server
Installing PHP under Xitami
A Test To See If You Write Sloppy Software
Switchbox
Professional PHP4 Multimedia Programming
PHP Iterator
Dynamic Graphs with PHP, MySQL and GD
Synchronizing Your MySQL Database Using SQLyog
OO Design: Abstract Classes
Moving Logic Into the Database
PEAR Primer
Converting XML into a PHP data structure