Hey everyone,
I've been working on this for a few weeks now, but haven't run into anything that I particularly enjoyed. I've seen all the RSS feed systems, but I would like the original post for its pictures and such. Current post aggregation solutions scan through the blogs and only pull a single post as well. I decided to build one my own, but I ran into a problem. So, I'm looking for some help from anybody willing to toss around ideas.
Currently, I:
1. Obtain a list of blog names I want to pull from (i.e. Featured blogs or All).
2. Compile the SQL statement to UNION which ever blogs I desire to pull from and ORDER BY post_date
3. Spit out the posts to a webpage.
This works great except for one problem, getting the link back to the original post. There's no column that contains which blog that specific post came from because it was stored in the table name. Now that they're all UNION'ed I don't have a reference back to this information.
Any ideas for ways around this? Thanks in advanced from everyone.