I am not sure what you mean exactly but if you mean dropping affiliate links into a displayed rss on your site it's easy enough.
you just need to add some sort of find and replace as the feed is displayed.
PHP Code:
$find_array('xbox','ps3','wii');
$replace_array('<a href="http://www.affiliates4u.com/forums/widgets-coding-ajax-php-technology-affiliate-marketing/afflinkxbox">xbox</a>','<a href="http://www.affiliates4u.com/forums/widgets-coding-ajax-php-technology-affiliate-marketing/afflinkps3">Ps3</a>','<a href="http://www.affiliates4u.com/forums/widgets-coding-ajax-php-technology-affiliate-marketing/affwiiW">Wii</a>');
$text_to_show = str_replace($find_array,$replace_array,$feed_text);
echo $text_to_show;
Bookmarks