Richard Heyes wrote:
Is there something in PHP5 which can generate the RSS feed?

You don't need an extension to help you generate an XML feed. You
dimply output XML data instead of HTML and send an appropriate content
type header, eg:

header('Content-Type: text/xml');


I was just about to send something similar :)


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

Reply via email to