[PHP] Line breaks in mail function?

2005-11-06 Thread Murray @ PlanetThoughtful
Hi All, I'm building a site on a new web host and am currently working on feedback forms. I'm using the mail() function to send the feedback to the destination mail account, and I'm having problems getting the body of the email to line break. I've tried constructing the body with both

Re: [PHP] Line breaks in mail function?

2005-11-06 Thread Jasper Bryant-Greene
On Mon, 2005-11-07 at 12:20 +1000, Murray @ PlanetThoughtful wrote: Example code: $body = 'From: ' . $name . '\r\n\r\n'; $body .= 'Email:' . $email . '\r\n\r\n'; $body .= 'IP Address: ' . $_SERVER['REMOTE_ADDR'] . '\r\n\r\n'; $body .= 'Feedback:\r\n\r\n'; $body .=

RE: [PHP] Line breaks in mail function?

2005-11-06 Thread Richard Leclair
] Sent: Monday, 7 November 2005 10:21 am To: php-general@lists.php.net Subject: [PHP] Line breaks in mail function? Hi All, I'm building a site on a new web host and am currently working on feedback forms. I'm using the mail() function to send the feedback to the destination mail

Re: [PHP] Line breaks in mail function?

2005-11-06 Thread Murray @ PlanetThoughtful
Jasper Bryant-Greene wrote: On Mon, 2005-11-07 at 12:20 +1000, Murray @ PlanetThoughtful wrote: Example code: $body = 'From: ' . $name . '\r\n\r\n'; $body .= 'Email:' . $email . '\r\n\r\n'; $body .= 'IP Address: ' . $_SERVER['REMOTE_ADDR'] . '\r\n\r\n'; $body .=

[PHP] Line breaks in form

2004-11-29 Thread Chris Farrugia
Greetings, On one of my forms to send email, I have multiple line breaks with different paragraphs. I looked up the nl2br function and that looks like an option, but I would ideally like to wrap these paragraphs inside p/p tags. Is there a way to do this easily? Any advice would be greatly

Re: [PHP] Line breaks in form

2004-11-29 Thread John Nichel
Chris Farrugia wrote: Greetings, On one of my forms to send email, I have multiple line breaks with different paragraphs. I looked up the nl2br function and that looks like an option, but I would ideally like to wrap these paragraphs inside p/p tags. Is there a way to do this easily? Any

Re: [PHP] Line breaks in form

2004-11-29 Thread Greg Donald
On Mon, 29 Nov 2004 12:29:59 -0500, Chris Farrugia [EMAIL PROTECTED] wrote: On one of my forms to send email, I have multiple line breaks with different paragraphs. I looked up the nl2br function and that looks like an option, but I would ideally like to wrap these paragraphs inside p/p tags.

[PHP] line breaks in email text messages

2004-09-13 Thread Michael Collins
How do I preserve line breaks in the body of an email message? The email message is plain text and I simply want to have a return included between each element entered into a form. I have used \n or \r\n (since this is a Windows server) to no avail. The email message I get back has all the

Re: [PHP] line breaks in email text messages

2004-09-13 Thread Michael Collins
At 9:11 AM +0800 9/14/04, Michael Collins wrote: How do I preserve line breaks in the body of an email message? Nevermind got it figured out. sorry for the extra bandwidth -- Michael __ ||| Michael Collins ||| Kuwago Inc ||| Singapore and Seattle USA -- PHP General Mailing List

[PHP] Line breaks again....

2004-07-21 Thread PHP User
Hi, I have managed to get the line breaks to show up on my site no problem, but I still get one long line when it is sent to my email. I have looked and looked and have read all the stuff I could find on \r\n, so I'm not sure where to go from here since it's not working... Suggestions are

Re: [PHP] Line breaks again....

2004-07-21 Thread John W. Holmes
PHP User wrote: I have managed to get the line breaks to show up on my site no problem, but I still get one long line when it is sent to my email. I have looked and looked and have read all the stuff I could find on \r\n, so I'm not sure where to go from here since it's not working... Are you

RE: [PHP] Line breaks again....

2004-07-21 Thread PHP User
: July 21, 2004 6:36 PM To: PHP User Cc: PHP Subject: Re: [PHP] Line breaks again PHP User wrote: I have managed to get the line breaks to show up on my site no problem, but I still get one long line when it is sent to my email. I have looked and looked and have read all the stuff I could find

Re: [PHP] Line breaks again....

2004-07-21 Thread Justin Patrin
=str_replace(br /,,$text); * these two lines make it display properly on my site * . Code to display message Thanks -Original Message- From: John W. Holmes [mailto:[EMAIL PROTECTED] Sent: July 21, 2004 6:36 PM To: PHP User Cc: PHP Subject: Re: [PHP] Line breaks again

Re: [PHP] Line breaks again....

2004-07-21 Thread Jason Wong
On Thursday 22 July 2004 13:13, Justin Patrin wrote: AHA! Outlook, by default, removes extra line breaks in text messages. Do you see a message which says this in Outlook? This is an option you can turn off. If this doesn't work, just send the message as HTML. There's really no reason not to,

[PHP] Line breaks in PHP.

2003-12-16 Thread Philip J. Newman
Question: When you hit enter in a text box is that classified as a \n? --- Philip J. Newman Master Developer PhilipNZ.com [NZ] Ltd. [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Line breaks in PHP.

2003-12-16 Thread Justin French
On Wednesday, December 17, 2003, at 03:10 PM, Philip J. Newman wrote: Question: When you hit enter in a text box is that classified as a \n? generally, yes. depending on the client platform, it might be an \r\n or \r (I've heard)... justin -- PHP General Mailing List (http://www.php.net/)

Re: [PHP] Line breaks in PHP.

2003-12-16 Thread Philip J. Newman
Ok thats cool, guess i'll look for both, and only one in the data - Original Message - From: Justin French [EMAIL PROTECTED] To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Wednesday, December 17, 2003 5:35 PM Subject: Re: [PHP] Line breaks in PHP. On Wednesday, December 17, 2003

[PHP] line breaks

2003-11-25 Thread Rodney Green
Greetings! I'm writing a script that will take the contents of a text file that has several lines of user accounts and creates a shell script with chown commands for each user in that text file. My problem is that when it writes the shell script file it puts a line break after the colon in

Re: [PHP] line breaks

2003-11-25 Thread John Nichel
Rodney Green wrote: Greetings! I'm writing a script that will take the contents of a text file that has several lines of user accounts and creates a shell script with chown commands for each user in that text file. My problem is that when it writes the shell script file it puts a line break

Re: [PHP] line breaks

2003-11-25 Thread Rodney Green
John Nichel wrote: Chances are, $buffer has the line break on it when you read it in from the text file. Try striping off whitespace before you write... while (!feof ($handle)) { $buffer = rtrim ( fgets($handle, 1000) ); fwrite ($fhandle, chown $buffer:html

Re: [PHP] line breaks

2003-11-25 Thread John Nichel
Rodney Green wrote: John Nichel wrote: Chances are, $buffer has the line break on it when you read it in from the text file. Try striping off whitespace before you write... while (!feof ($handle)) { $buffer = rtrim ( fgets($handle, 1000) ); fwrite ($fhandle, chown $buffer:html

Re: [PHP] line breaks

2003-11-25 Thread Rodney Green
John Nichel wrote: Rodney Green wrote: John Nichel wrote: Chances are, $buffer has the line break on it when you read it in from the text file. Try striping off whitespace before you write... while (!feof ($handle)) { $buffer = rtrim ( fgets($handle, 1000) ); fwrite ($fhandle,

Re: [PHP] line breaks

2003-11-25 Thread John Nichel
Rodney Green wrote: snip Actually, I'm not having problems with that. The whitespace is still there in between the commands and arguments, etc. I'm using fgets , not fread. Not sure what the difference between the two is but I'll check it out. The problem I am having however is that at the end

Re: [PHP] line breaks

2003-11-25 Thread Rodney Green
John Nichel wrote: Rodney Green wrote: snip Actually, I'm not having problems with that. The whitespace is still there in between the commands and arguments, etc. I'm using fgets , not fread. Not sure what the difference between the two is but I'll check it out. The problem I am having however

[PHP] Line breaks

2003-03-06 Thread Gavin Amm
Hi, Please help me before I go insane... I have a basic feedback form with: your name your e-mail address E-Mail Subject Message The problem is the line breaks... For example, they might type in the following (between the dashed lines) into the Message textarea:

RE: [PHP] Line breaks

2003-03-06 Thread John W. Holmes
I have a basic feedback form with: your name your e-mail address E-Mail Subject Message The problem is the line breaks... For example, they might type in the following (between the dashed lines) into the Message textarea: -- Hi, Please send

[PHP] Line Breaks in dynamic Download

2002-09-06 Thread Kevin Stone
I have a script that allows clients to download their email lists from a database. However I can not get the 'new line' characters (\n \r) to do their job in Notepad when the download is prompted and the file saved to disk. I've simplified the problem with the code below. Both \n and \r

Re: [PHP] Line Breaks in dynamic Download

2002-09-06 Thread Chris Boget
? $file = LINE ONE\nLINE TWO\rLINE THREE\n\r; Try this instead and see if it works... $windowsNewLine = chr(13) . chr(10); $file = LINE ONE{$windowsNewLine}LINE TWO{$windowsNewLine}LINE THREE{$windowsNewLine}; Not sure if Notepad will interpret \r\n correctly... Chris -- PHP General

RE: [PHP] Line Breaks in dynamic Download

2002-09-06 Thread Jay Blanchard
[snip] I have a script that allows clients to download their email lists from a database. However I can not get the 'new line' characters (\n \r) to do their job in Notepad when the download is prompted and the file saved to disk. I've simplified the problem with the code below. Both \n and \r

Re: [PHP] Line Breaks in dynamic Download

2002-09-06 Thread Kevin Stone
: attachment; filename=TEST.txt); echo LINE ONE.chr(13).LINE TWO.chr(10).LINE THREE; ? -Kevin - Original Message - From: Jay Blanchard [EMAIL PROTECTED] To: 'Kevin Stone' [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Friday, September 06, 2002 12:55 PM Subject: RE: [PHP] Line Breaks in dynamic

Re: [PHP] Line Breaks in dynamic Download

2002-09-06 Thread Larry Irwin
Later, Larry Irwin - Original Message - From: Kevin Stone [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, September 06, 2002 2:48 PM Subject: [PHP] Line Breaks in dynamic Download I have a script that allows clients to download their email lists from a database. However I can not get

RE: [PHP] Line Breaks in dynamic Download

2002-09-06 Thread Jay Blanchard
[snip] ? header(Content-type: application/octet-stream); header(Content-Disposition: attachment; filename=TEST.txt); echo LINE ONE.chr(13).LINE TWO.chr(10).LINE THREE; ? [/snip] Try this; ? header(Content-type: application/octet-stream); header(Content-Disposition: attachment;

Re: [PHP] Line Breaks in dynamic Download

2002-09-06 Thread Kevin Stone
Message - From: Jay Blanchard [EMAIL PROTECTED] To: 'Kevin Stone' [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Friday, September 06, 2002 1:21 PM Subject: RE: [PHP] Line Breaks in dynamic Download [snip] ? header(Content-type: application/octet-stream); header(Content-Disposition: attachment

[PHP] Line Breaks in dynamic Download

2002-09-06 Thread Steven
snip Again, the new problem is that the Text is not downloading as a file. It is just being printed to the screen. /snip I tested the following code: ? header(Content-type: application/octet-stream); header(Content-Disposition: attachment; filename=TEST.txt); echo LINE ONE.chr(10).LINE

Re: [PHP] Line Breaks in dynamic Download

2002-09-06 Thread Kevin Stone
); } ? Again much thanks to everyone who helped me. -- Kevin Stone [EMAIL PROTECTED] - Original Message - From: Steven [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, September 06, 2002 1:50 PM Subject: [PHP] Line Breaks in dynamic Download snip Again, the new problem

[PHP] Line breaks...

2002-04-16 Thread Philip Jeffs
Hi, I have a form inserting data into a database. I'm using nl2br to add br to the data enetered where appropriate. The data is then pulled out of the database and inserted into text fields for editing. Can anyone tell me how to remove the br tags while maintaining the line breaks in the text

Re: [PHP] Line breaks...

2002-04-16 Thread Richard Baskett
distrustful of the independent mind. - James Baldwin From: Philip Jeffs [EMAIL PROTECTED] Date: Tue, 16 Apr 2002 09:46:43 +0100 To: PHP LIST [EMAIL PROTECTED] Subject: [PHP] Line breaks... Hi, I have a form inserting data into a database. I'm using nl2br to add br to the data enetered where

RE: [PHP] Line breaks...

2002-04-16 Thread Jon Haworth
Hi Phil, I have a form inserting data into a database. I'm using nl2br to add br to the data enetered where appropriate. The data is then pulled out of the database and inserted into text fields for editing. Can anyone tell me how to remove the br tags while maintaining the line breaks

[PHP] line breaks lost in XSL transformation

2001-07-09 Thread olsonric
I've started experimenting with XML, by having my blogging script output the news to XML [http://php.techno-weenie.com/supasite/xml/supa.xml]. I've tried transforming it with an XSL stylesheet [http://php.techno-weenie.com/supasite/test.xsl] to get this output

Re: [PHP] Line Breaks in textarea

2001-06-29 Thread David Robley
On Thu, 28 Jun 2001 04:44, Nathan Cook wrote: Hello- I am selecting a value from a blob field in a mysql db. The value looks like this: Test 12...3 \r \n br %0%D Test When I print that value in a TEXTAREA$value/TEXTAREA -- The textarea returns exactly what you see above. I am

[PHP] Line Breaks in textarea

2001-06-28 Thread Nathan Cook
Hello- I am selecting a value from a blob field in a mysql db. The value looks like this: Test 12...3 \r \n br %0%D Test When I print that value in a TEXTAREA$value/TEXTAREA -- The textarea returns exactly what you see above. I am trying to get it to display a line break (so that I can

Re: [PHP] Line Breaks in textarea

2001-06-28 Thread Alva Chew
try the function nl2br($value) regards, Alva Chew Nathan Cook [EMAIL PROTECTED] wrote in message 00cf01c0ff3d$72992160$[EMAIL PROTECTED]">news:00cf01c0ff3d$72992160$[EMAIL PROTECTED]... Hello- I am selecting a value from a blob field in a mysql db. The value looks like this: Test

[PHP] Line breaks in PHP

2001-03-29 Thread Matt Davis
I have a form that edits the text on a web page by putting the data into a db and then outputting to the webpage when it is called. When I enter my text into my form I use the return key to start new lines, but when the text appears on my webpage it has no line breaks so the text just wraps to

Re: [PHP] Line breaks in PHP

2001-03-29 Thread Renze Munnik
I think nl2br() is what you're looking for. RenzE Matt Davis wrote: I have a form that edits the text on a web page by putting the data into a db and then outputting to the webpage when it is called. When I enter my text into my form I use the return key to start new lines, but when the

RE: [PHP] Line breaks in PHP

2001-03-29 Thread Boaz Yahav
, March 29, 2001 11:29 AM To: Php Mailing List Subject: [PHP] Line breaks in PHP I have a form that edits the text on a web page by putting the data into a db and then outputting to the webpage when it is called. When I enter my text into my form I use the return key to start new lines, but when

[PHP] Line breaks in PHP

2001-03-29 Thread Martin Cabrera Diaubalick
. Sometimes it helps! :-) - Original Message - From: Matt Davis [EMAIL PROTECTED] To: Php Mailing List [EMAIL PROTECTED] Sent: Thursday, March 29, 2001 11:29 AM Subject: [PHP] Line breaks in PHP I have a form that edits the text on a web page by putting the data into a db

RE: [PHP] Line breaks in PHP

2001-03-29 Thread Martin E. Koss
saving the data into the table, use the above but then you won't need it when you pull the data back out. Martin. -Original Message- From: Jason Lotito [mailto:[EMAIL PROTECTED]] Sent: 29 March 2001 20:30 To: [EMAIL PROTECTED]; Php Mailing List Subject: RE: [PHP] Line breaks in PHP