RE: [PHP] Retaining formatting problem[Scanned]

2003-07-08 Thread Michael Egan
I've experienced the same problem. It's not that the line returns disappear - they will still be retained but stored as /n or /r. You'll need to find a way of replacing the line breaks with a html paragraph break - assuming your required output is html. Perhaps some of the regexp functions

Re: [PHP] Retaining formatting problem[Scanned]

2003-07-08 Thread Marek Kilimajer
input type=text cannot have multiple lines, use textarea name= name col= num of cols rows= num of rows this little amount of text/textarea Michael Egan wrote: I've experienced the same problem. It's not that the line returns disappear - they will still be retained but stored as /n or /r.

RE: [PHP] Retaining formatting problem[Scanned]

2003-07-08 Thread Mark
--- Michael Egan [EMAIL PROTECTED] wrote: I've experienced the same problem. It's not that the line returns disappear - they will still be retained but stored as /n or /r. You'll need to find a way of replacing the line breaks with a html paragraph break - assuming your required output is

Re: [PHP] Retaining formatting problem[Scanned]

2003-07-08 Thread Mike Migurski
input type=text cannot have multiple lines, use textarea name= name col= num of cols rows= num of rows this little amount of text/textarea This is true. Also, watch the line endings coming aout of that textarea - you may want to normalize them. I prefer unix linebreaks, so I use this to