View Single Post
Old 06-02-2008, 06:46 AM   #7 (permalink)
oscargodson
The Wanderer
 
Join Date: Jun 2008
Posts: 19
Thanks: 0
oscargodson is on a distinguished road
Default

I am creating a full scale CMS tool by just using XML. The point of this is so that people I have a set up like this:

HTML Code:
<website>
   <webpage id="3"> <!-- For changing order on navigations -->
      <title>Title for the Page</title>
      <subhead>Sub head, but this is optional</subhead>
      <content>
         <p>This is the main content</p>
         <p>paragraphs are retained also</p>
      </content>
   </webpage>
</website>
The webpage tag gets created each time someone creates a page. I also use it for my personal site instead of a database. oscargodson.com/portfolio.xml and my web pages take all that information and parses it into an HTML document.
oscargodson is offline  
Reply With Quote