|
I posted on this somewhere before but I can't seem to find it.
In it's simplest form you would simply need to create a couple of tables in your database to store each blog and link it to a particular user in your user table.
Maybe your blog table would look something like this:
blog_id ( unique id of the blog )
blog_user_id ( the user that posted the blog; or maybe it's just you )
blog_date ( date the blog was posted )
blog_body ( the actual blog body )
After your table, it will simply be a matter of building a form to insert the blog data into the database and then making a page to grab the blogs from the database.
|