dr85,
it seems you have no need for a 'editable content' div - and honestly, I can't even
think of any benefits of such an option.
I imagine the best setup (eventually) for this will be a combination of PHP and AJAX - the AJAX will allow you to update the database instantaneously, without the need of a 'submit' button.
But for now I would recommend getting the basic structure in place.
Hopefully the book you have will talk you through the reasoning behind what you are doing - if not just take each of the blocks below one at a time - google your aim and work on that.
I'm not going to write the code, I feel the best way to learn is search and type yourself.
Create two new .php pages - 'form.php' and 'submit.php'.
Eventually you will be able to combine these pages into one - but having two separate pages will help solidify your thinking into the structure of whats actually going on.
form.php
will need:
// A basic HTML form
// Use HTML text area to create the box you want to type in
// Don't forget the submit button
// Connect to your database
// Create a MYSQL query to select the right information from the database
// Create a variable from that query
// Display that query when the form loads.
submit.php
will need:
// check if the form.php has been 'POST'ed
// Create a variable from the posted textarea
// Connect to your database
// Update your database with the new text
// Was the update successful? (a result)
Have a good go at the above points and post back with your results.
I look forward to seeing your work.