[PHP] wrapping text

2005-08-13 Thread John Taylor-Johnston
Folks are complaining mail arrives and text will not wrap. $message comes directly from a textarea. Old mail readers, I guess? How can I make their life better and make the text wrap? mail([EMAIL PROTECTED], stripslashes($subject), stripslashes($message), Return-Path: [EMAIL

Re: [PHP] wrapping text

2005-08-13 Thread Jasper Bryant-Greene
John Taylor-Johnston wrote: Folks are complaining mail arrives and text will not wrap. $message comes directly from a textarea. Old mail readers, I guess? How can I make their life better and make the text wrap? http://www.php.net/wordwrap -- PHP General Mailing List (http://www.php.net/) To

[PHP] Wrapping text output

2003-03-21 Thread Philip J. Newman
$my_data = This is a really long string that could go on for ever and ever and ever and ever and ever and ever and ever and ever and ever and ever and ever and ever and ever and don't wrap to my table it makes it bigger; echo $my_data; How can I make this wrap to the table? -- Philip J.

Re: [PHP] Wrapping text output

2003-03-21 Thread Sebastian
$my_data = wordwrap( $my_data, 50 ); http://www.php.net/manual/en/function.wordwrap.php it'll wrap after 50 charcters... change 50 to what you want it to start wrapping at. If $my_data is inside a table it should wrap the text automatically unless you tell the table not to wrap .. cheers, -

Re: [PHP] Wrapping text output

2003-03-21 Thread Justin French
on 22/03/03 3:57 PM, Philip J. Newman ([EMAIL PROTECTED]) wrote: $my_data = This is a really long string that could go on for ever and ever and ever and ever and ever and ever and ever and ever and ever and ever and ever and ever and ever and don't wrap to my table it makes it bigger; echo

[PHP] Wrapping Text

2002-04-28 Thread Scott Reismanis
Hi PHP digest readers. Ok I have a problem and a question which I am certain many share and even a solution to my problem, however I wish to hear how you dealt with this issue to see if there is a better method. Ok for my problem, it is regarding a smilie system. Currently what happens is if

RE: [PHP] Wrapping Text

2002-04-28 Thread John Holmes
] Subject: [PHP] Wrapping Text Hi PHP digest readers. Ok I have a problem and a question which I am certain many share and even a solution to my problem, however I wish to hear how you dealt with this issue to see if there is a better method. Ok for my problem, it is regarding a smilie

Re: RE: [PHP] Wrapping Text

2002-04-28 Thread Scott Reismanis
Message - From: John Holmes [EMAIL PROTECTED] Date: Monday, April 29, 2002 3:36 am Subject: RE: [PHP] Wrapping Text Wordwrap() might be a good solution for you, but it's probably more of a table design issue. The table needs some whitespace to break to a new line. If you are putting

RE: RE: [PHP] Wrapping Text

2002-04-28 Thread John Holmes
It should have a % for the width at least, and then it should wrap itself. ---John Holmes... -Original Message- From: Scott Reismanis [mailto:[EMAIL PROTECTED]] Sent: Sunday, April 28, 2002 7:42 AM To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Subject: Re: RE: [PHP] Wrapping Text

Re: RE: [PHP] Wrapping Text

2002-04-28 Thread Jason Wong
On Monday 29 April 2002 01:53, John Holmes wrote: It should have a % for the width at least, and then it should wrap itself. Not necessarily, if you have a single 'word' (a string of characters with no space) that is very long then the width of the table stretches to accomodate the length of

RE: RE: [PHP] Wrapping Text

2002-04-28 Thread John Holmes
It should have a % for the width at least, and then it should wrap itself. Not necessarily, if you have a single 'word' (a string of characters with no space) that is very long then the width of the table stretches to accomodate the length of that 'word'. Right, that's why I told him

[PHP] wrapping text on a page display.

2001-05-21 Thread Floyd Baker
Hello.. Sorry, I know this is a constant problem.., at least for me. Now I am using 'text' to store big inputs. It does not wrap on the screen display... I have it working on my machine with wordwrap with php4. The isp does not have php4 yet, and it doesn't work with I upload. What is

Re: [PHP] wrapping text on a page display.

2001-05-21 Thread Floyd Baker
On Mon, 21 May 2001 12:57:13 -0400, you wrote: Hello.. Sorry, I know this is a constant problem.., at least for me. Now I am using 'text' to store big inputs. It does not wrap on the screen display... I have it working on my machine with wordwrap with php4. The isp does not have php4

[PHP] Wrapping text to store in the database

2001-05-08 Thread Romulo Roberto Pereira
Hello! If a user drop a text like this in a textarea: --- the U.S. Army's 3rd Infantry Division, 15th Regiment, A Company, seized a 44-car train in a tunnel 60 miles south of Salzburg, Austria. It contained an incalculable fortune in fine art, bullion, jewelry, furs, coins, stamp collections,

RE: [PHP] Wrapping text to store in the database

2001-05-08 Thread Jack Dempsey
:09 PM To: Php-General Subject: [PHP] Wrapping text to store in the database Hello! If a user drop a text like this in a textarea: --- the U.S. Army's 3rd Infantry Division, 15th Regiment, A Company, seized a 44-car train in a tunnel 60 miles south of Salzburg, Austria. It contained

RE: [PHP] Wrapping text to store in the database

2001-05-08 Thread Don Read
On 08-May-01 Romulo Roberto Pereira wrote: Hello! If a user drop a text like this in a textarea: snip --- As you can see the text is simple and there are not any html tags. How do I do to add this elements so the text become something like this below, I mean how to wrap it up in

[PHP] Wrapping Text

2001-04-07 Thread Chris Anderson
I've been having large problems with this so I decided to ask you guys(and gals ^_^). I have a textarea where you can type your text and it is saved to a file. Then another script includes that. Unfortunately I can't find a way for the textarea to wrap the text, or make it so it shows it they

Re: [PHP] Wrapping Text

2001-04-07 Thread shaun
one thing that would help is to str_replace("\n", "br"); I think textarea has a wrap attribute doesn't it? On Wednesday 04 April 2001 13:20, Chris Anderson wrote: I've been having large problems with this so I decided to ask you guys(and gals ^_^). I have a textarea where you can type your

Re: [PHP] Wrapping Text

2001-04-07 Thread Philip Olson
Or better yet, use nl2br() : http://www.php.net/manual/en/function.nl2br.php Regarding the html WRAP attribute, this little tutorial looks interesting : http://www.web-wise-wizard.com/html-tutorials/ html-form-forms-textarea-wrap.html (note: it's one link, had to