I was wondering if it is possible to page and RSS feed. I am dealing with a situation where I can only have 15 items in my feed, but there’s close to 60 items I need to mine… I’ve looked on the RSS specs page and there’s nothing there about it.
Any help or advice would be appreciated! I’m thinking that I might be out of luck as the page gets generated through built-in criteria. That would suck.
Dont thing RSS feeds do that, its just one huge (or small) list of items, thats it. What you could do though, is store the info into a text file (or something similar) using PHP for example. You could store more items in a textfile, and use that file in your swf’s.
Dont thing RSS feeds do that, its just one huge (or small) list of items, thats it. What you could do though, is store the info into a text file (or something similar) using PHP for example. You could store more items in a textfile, and use that file in your swf's.
Did that make any sense at all?
Yeah, makes sense, but I am not trying to pull it into Flash. I need to display it using PHP, AND, I need to have more than the allotted 15… thanks for the reply though!
Yes, I mentioned that already in the post. The system that runs the blog that generates the feed only allows me to have 15 entries.
Hence why I was hoping I could pass a paging variable to it… Any other ideas?
That would be a function of whatever is generating your RSS feed, so we’d at least have to know what you’re using before anyone could answer that question.
You might be able to read the node containing the link to the next page, then navigate to that page and append it’s contents to your xml (and keep doing this untill you’ve gone through all the pages).
How about doing the pagination on the client side. i.e, get all the results from the rss feed, show /hide the relevant stuff . I am trying to do something similar on www.jobsrmine.com but no luck yet.