Esempio n. 1
0
$item_helper = new ItemHelper();
?>

<table>
<th>id</th><th>title</th>

<?php 
foreach ($feed->items() as $item) {
    ?>

<tr>
 <td><?php 
    echo $item->id();
    ?>
</td>
  <td><?php 
    echo $item_helper->link($item);
    ?>
 </td>
</tr>

<?php 
}
?>



</table>

<?php 
include 'footer.php';