Suppose your text area name is "description" and your database field to store the information is called "item_desc".
You would probably save the info into your database with an assignment and sql:
$safe_desc = addslashes($description);
$sql = "INSERT INTO itemTable (item_desc) VALUES (' ".$safe_desc." ') ";
// execute sql for your DB
Now the info is in your database the same way they typed it into the text area. Now you want to display the info on a page:
// retrieve the information from you database
$sql = "select item_desc from itemTable where item_key = 'whatever' ";
// execute sql for your DB
// display it on a page
print nl2br($item_desc);
I left out the database specific code but you get the general idea.
-- Rich Rijnders
-- Irvine, CA US