I'm creating an edit page and all of the fields are returning strings as expected except for the TEXT column that I'm trying to pull into a TEXTAREA form field. My code is:
<textarea name="body" rows="25" cols="70" value="'.$row['body'].'" />
Is there supposed to be another way to do this?