Hello,
I was making a form that stores a 'Notes' field using a HTML textfield. The problem is that when I store it in MySQL and then retrieve it later, it comes out in one long paragraph. Any carriage returns that were entered before were dropped.
ie. If someone typed:
Hello.
My name is Aludaan.
it is displayed as:
Hello.My name is Aludaan.
Is there a way to make either MySQL save it with carriage returns or PHP to enter <br> commands where people enter carriage returns?
Thanks,
Aludaan