Sample> RssWrite

<?php

// include TPLN
include('TPLN/TPLN.php');

$TPLN = new TPLN();

// rss description
$desc['title'] = 'MyWebsite Rss';
$desc['link'] = 'http://www.mywerbsite.com';
$desc['description'] = "This is the rss of my website with TPLN !";
$desc['copyright'] = 'MyWebsite';
$desc['image_url'] = 'http://www.mywerbsite.com/logo.gif';

// items, you can get it fom a database !
for($i=1$i <= 3$i++)
{
    
$items[] = array('title' => 'News '.$i,
                     
'link' =>  'http://www.mywerbsite.com/news'.$i,
                     
'pubDate' => date('d/m/Y H:i'),
                     
'description' => 'Description of my item '.$i);
}

$output $TPLN->rssWrite($desc$items'utf-8'false); // by default charset is iso-5589-1

header('content-type: text/plain');// it is only for the example - remove it
echo $output;


?>
no template required