frreburner (http://www.feedburner.com
Main Topics
Browse All TopicsI have a client who wants to have a "tips" section on her website that she can update periodically.
I was thinking of using wordpress for her to create the articles in - but I need to figure out how to integrate the latest article into her static web page and how to offer a list of past articles that can also be listed or viewed on that page.
Or if there is a better /easier way to allow her to create her articles and then have the latest one show up on her html (or php) page as well as to be able to see a list of past articles with the ability to load them into the page as well - that would be awesome.
Any thoughts?
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
frreburner (http://www.feedburner.com
A great toolkit for this is carp and grouper from Gecko Tribe.
I've integrated many feeds (including aggregation and filtering) into static/php pages from the blogosphere.
http://www.geckotribe.com/
Business Accounts
Answer for Membership
by: MasonWolfPosted on 2007-10-25 at 11:34:12ID: 20150049
It seems to me you've got a couple possible options. The first is to call up the actual articles from the database the way Wordpress does. This absolutely requires a php solution, though not necessarily a php page for the website itself. You could use an AJAX implementation so that your static page only needed javascript code running on it, and then call to a php page running on the same server that does all the actual heavy lifting.
The second option I can think of, and this is the one I like better, is to use the RSS feed Wordpress creates automatically. Any cut and paste feed-reader script should be able to display your blog articles (at least anything up through a "More" tag). This would again lend itself nicely to a javascript solution. The drawback to any javascript solution though, is you can't get any SEO benefit from the content. PHP can also parse an XML feed, so if you want to approach it that way you can.
So, is that enough to get you going?