.
 

DIY BEST SELLERS

 

set_feed_url($url); $feed->init(); $feed->handle_content_type(); $feed->set_item_limit(8); // limit the number of items per feed $feed->strip_htmltags(array_merge($feed->strip_htmltags, array('a'))); // Strips the default links from the Amazon feed. $myamazonid = '&tag=techdeals0f-21'; foreach ($feed->get_items(0, 8) as $key=>$singleitem) { echo "

" . $singleitem->get_title() . "

" ; echo '

Direct Link for this item : ' . $singleitem->get_title() . '

'; // echo 'Permalink: ' . $singleitem->get_permalink(); echo "

" . $singleitem->get_description() . "

" ; } unset($feed); // Free the memory. ?>