HTTP-404 wrote:
Hello Freinds
I'm making script that has form with textarea
u look like the textarea igonres newlines, as datasubmitted to mySQL dbase is 1 chubk of text, with no new lines
I may be misreading this, are you trying to take data submitted to a textarea and put it into a mySQL database or vice versa?
The first thing I would try is something like
$textarea = explode("\n",$textarea);
Then just keep in mind that each element of $textarea is a line of text and manipulate it to suit your exact needs.