in reply to Printing the contents of a textarea

Did you perhaps mean:
... value=\"$row[50]\" ...
Also, textareas don't have values. Enclose the data within the textarea tags:
<textarea>$row[50]</textarea>
(surrounding attributes removed for clarity).