I am developing a website for a club. At present the content of each page is inserted by the progrmmer like-
<div id="content"> This is the content of the home page.... ........... Content finished. </div> The administrator of the club needs an administrator side where he can update the content of the pages every week without the help of a programmer. How should I develop this administrator side? Where should I store the content of each page? When the administrator of the club inserts the content should I store the content in the database and retrieve the content for each page from the database at the load event of each page? What is the best way to do this?
Thanks