Is there a way around this to display it as it was originally entered?
when you store into a database, the return character is usually represented as \n, but in html you need a br tag
so with a quick line of php
echo str_replace(”\n”, “< br / >“, $row['field_name']);
//This line replaces invisible endline char for tags
hopefully this make sense
If it don’t work, try substituting \n for \r