There must be a dumb solution but I'm too tired to find out by myself :
I have this data in the db :
Code:
English
French
German
[ ! ] Note the leading line break above "English"
Now, when I display the data in a textarea, the leading line break disappears
I know the leading line break is still alive because a nl2br on the data shows this :
Code:
<br />
English<br />
French<br />
German<br />
So, how do I display this leading linebreak in the textarea so that I can store it again in the database?
Thanks a lot!