Re: [PHP] Help with Displaying RSS feed links

2003-09-09 Thread Matt Matijevich
could you use this for your loop? $sizeArr = sizeof($items); for ($row=0; $row<$sizeArr; $row++) { echo "" . $items[$row]['title'] . "" . $items[$row]['description'] . ""; } -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Help with Displaying RSS feed links

2003-09-09 Thread Alister
On Tue, 9 Sep 2003 15:35:48 -0500 "Frank Miller" <[EMAIL PROTECTED]> wrote: > Hello all, > > I'm working on an entry page where I would like to show some of the > current headlines from technology websites. I've been following and > pretty much understand the article on devshed > http://www.devsh

[PHP] Help with Displaying RSS feed links

2003-09-09 Thread Frank Miller
Hello all, I'm working on an entry page where I would like to show some of the current headlines from technology websites. I've been following and pretty much understand the article on devshed http://www.devshed.com/Server_Side/PHP/PHPRDF/page1.html Plugging RDF content into your Website. From wha