In the textarea, the 'enter' key will insert newline characters. When you display the text, newlines characters will not break the sentence on screen, as displayed HTML (generally) ignores newlines.
Try wrapping the nl2br() function around the text that you are displaying, e.g.
echo nl2nr($textarea_text);
This should convert each newline into an HTML break tag.