use br2nl function when getting information that has Line Returns or New line
Textarea automtic use hidden \n when you submit to database its ok, but when viewing you like to see the <BR> in HTML. so use nl2br when getting that infro from db
example:
$lines = "Line1 \n Line2 \n" // simulation of textrarea input
show it with .... nl2br($lines);
doing this will help organize and read from Database easy. its little sloopy looking.
right no.. l8r