Can somebody tell me how to have ebay rss feed span on multiple pages on my website? Say I want 10 items per page. This would be really helpful to know. Thanks in advance.
If you have some PHP skillz, the way to to do is to suck the RSS feed into a array. Then loop the array with a start and end index point (for loop). Take the total records (100) divided by the number of auctions per page that will give you the number of pages available, then make some 'page' links (ie: 1, 2, 3, etc). Based off of the page value passed, you set up your start and end point for the loop (0 - 9 or 10 - 19, etc). When I get some time today, I'll write a little article about this with PHP examples. hanji
Hopefully, I understood your initial problem. I wrote a small blog post about paging eBay RSS feeds using PHP4 and arrays. Let me know if you have any problems. Thanks! hanji