Re: How to create RSS feeds with PHP?

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On 3/30/06, Merlin <news.groups@xxxxxx> wrote:
> chris smith schrieb:
> > On 3/28/06, Merlin <news.groups@xxxxxx> wrote:
> >> Hi there,
> >>
> >> I am wondering if there are already tools out there which do
> >> create RSS feeds on the fly with the help of PHP.
> >>
> >> My goal would be to create RSS dynamicly out of a LAMP App. to
> >> syndicate the results.
> >>
> >> Are there any tools you know about?
> >
> > This might get you started:
> >
> > http://www.phpclasses.org/browse/package/2957.html
> >
> > --
> > Postgresql & php tutorials
> > http://www.designmagick.com/
>
> Hi Chris,
>
> thank you for that hint. That worked excellent. There is just one small thing I
> can not figure out. Including images into that feed. Using your mentioned
> classes I have following code:
>
> $rss_channel = new rssGenerator_channel();
>    $rss_channel->title = 'test';
>    $rss_channel->link = 'test.com';
>    $rss_channel->description = 'test';
>    $rss_channel->language = 'en-us';
>    $rss_channel->generator = 'RSS Feed Generator';
>    $rss_channel->managingEditor = 'info@xxxxxxx';
>    $rss_channel->webMaster = 'webmaster@xxxxxxx';
>
>    for ($i=0;$i<=$results_num;$i++){
>        $item = new rssGenerator_item();
>        $item->title    = $ad[title][$i];
>        $item->description    = $ad[text][$i];
>        $item->link = $ad[link][$i];
>        $item->pubDate = $ad[date][$i];
>        $rss_channel->items[] = $item;
>
>      $rss_image = new rssGenerator_image();
>      $rss_image->url = '/g/p/logo.gif';

Try it as a full url.

--
Postgresql & php tutorials
http://www.designmagick.com/

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux