Cool ...I like that idea, I wish amazon had somethin like that, it has RSS feeds, where you can aggrigate it to your site, however it is hard to get it the way you want it to look. It does not split every section up in the XML as seperate items..for example, it looks like this:
<item>amazon.com/image.jpg thelink price </item>
Instead of this:
<item>
<image>amazon.com/image.jpg</image><url>thelink</url><price>price</price>
</item>
The reason you would want to do that, is to customize the image/text/links to your current website theme. I kind of found a way around it, but I don't like the proccess to much. That is, splitting it up by Style name. For example, image has
<span name="image"></span> Before it, So, if the span name was image, I would then be able to grab what the image link is.
Pretty annoying doing it this way, because I can only do it for ONE feed a page, since it re-creates the <span's> on the page, and once there's more than one of the span "image" It can't tell the difference between the two. If anyone knows another way of doing this, that would be much appreciated
Thanks
SR