One of the most irritating things I find with websites is actually writing the content to go in them! I love coding them and doing all the technical stuff but I hate actually writing the English at the front.
My solution to this was to write a library to download RSS feeds on the server, process them and spit out the articles. I did this doing a HTTP GET request on the server, putting the XML through the XML Reader class of PHP, before splitting it into arrays of general information and articles within the class.
I couldn't see a nice class that would do this, so today I release my RSS feed class to the public! I don't really have any thoughts about upgrading this class at the moment, but if I get lots of emails telling me how great I am and where my class is being used, I might be persuaded to add some more features in.
This class is covered by GPLv3 licence, which allows you to modify and redistrobute how you like, as long as you also distrobute it under the GPLv3 licence. If you do do any modifications, let me know, and I'll get the class updated here too!



The layout to the left is a typical layout design for a webpage. It consists of a header space, left sidebar and main content area. With a table design it would have been made by making a 2x2 table and merging the top two cells to become one. Now this would be made up of three div tags.