Thread: what a headache
View Single Post
Old 05-02-2008, 08:29 AM   #2 (permalink)
sjaq
The Acquainted
 
sjaq's Avatar
 
Join Date: Nov 2007
Location: Netherlands
Posts: 113
Thanks: 11
sjaq is on a distinguished road
Default

PHP Code:
    $i 0;

    foreach (
$rss->getItems() as $item) {

        echo 
"<li><a href=\"" $item['link'] . "\">" $item['title'] . "</a></li>\n";
        
        ++
$i;
        
        if(
$i === 5) break;

    } 
sjaq is offline  
Reply With Quote
The Following User Says Thank You to sjaq For This Useful Post:
julianochrist (05-02-2008)