5121 Posts in 1527 Topics by 1119 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 495 Views |
-
RssFeed: change link field

23 December 2010 at 12:22am
Hi!
I need ti change default link of RssFeed.
I create a function that ask data to external db. so at the and of my function have:function query_ext() {
......query thak extract data ....
$doSet = new DataObjectSet();
while (...){
$result = array(
'Title'=> $titolo,
'Abstract'=> $abstract,
'My_Link'=> $my_link, );
$doSet->push(new ArrayData($result));}
return $doSet;
}and I wrote this in my controller:
function rss() {
$rss = new RSSFeed($this->query_ext(), 'My_Link', "I Feed RSS", "My feed are:", "Title", "Abstract", "Author");
$rss->outputToBrowser();
}In my rss page I see title and abstract but not link. can you help me to find error?
| 495 Views | ||
|
Page:
1
|
Go to Top |

