textarea's don't have a value attribute, but they do have values.
<textarea name="bla" rows="6" cols="40">text</textarea>
The above textarea, bla, has a value of "text". When the form is submitted, I will have access to variable $_POST['bla'] (assuming the method on the form is POST) with a value of "text"
Cgraz