Re: How to create RSS feeds with PHP?

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

 



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';
    $rss_image->title = 'image';
    $rss_image->link = 'no link';
    $rss_image->width = 88;
    $rss_image->height = 31;
    $rss_image->description = 'test image';
    $rss_channel->image = $rss_image;

  }
  $rss_feed = new rssGenerator_rss();
  $rss_feed->encoding = 'UTF-8';
  $rss_feed->version = '2.0';
  header('Content-Type: text/xml');
  echo $rss_feed->createFeed($rss_channel);

The image will not apear no matter how I try it. Any idea how to do that?

Best regards,

Merlin

--
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