RE: [PHP] strip ^M's ??

2001-03-02 Thread Nathan Cassano

Here is a solution I can up with to solve all the CR and LF funniness coming
from different web browsers.

$input = ereg_replace("\r\n|\n|\r", "\n", $input);

-Original Message-
From: Brandon Orther [mailto:[EMAIL PROTECTED]]
Sent: Friday, March 02, 2001 9:43 AM
To: PHP User Group
Subject: [PHP] strip ^M's ??


Hello,

I am making a PHP script that upload formmail into people web directory with
all the settings easily configured on a web based setup screen.  Is there a
way to have php remove all ^M (Control M) from the file before it uploads it
to the server?

Thank you,


Brandon Orther
WebIntellects Design/Development Manager
[EMAIL PROTECTED]
800-994-6364
www.webintellects.com



--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




RE: [PHP] strip ^M's ??

2001-03-02 Thread Walgamotte, David

use the dos2unix utility

-Original Message-
From: Brandon Orther [mailto:[EMAIL PROTECTED]]
Sent: Friday, March 02, 2001 11:43 AM
To: PHP User Group
Subject: [PHP] strip ^M's ??


Hello,

I am making a PHP script that upload formmail into people web directory with
all the settings easily configured on a web based setup screen.  Is there a
way to have php remove all ^M (Control M) from the file before it uploads it
to the server?

Thank you,


Brandon Orther
WebIntellects Design/Development Manager
[EMAIL PROTECTED]
800-994-6364
www.webintellects.com



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]



RE: [PHP] strip ^M's ??

2001-03-02 Thread Brandon Orther

Thanks!

Werked Great d;-

-Original Message-
From: Nathan Cassano [mailto:[EMAIL PROTECTED]]
Sent: Friday, March 02, 2001 9:46 AM
To: 'Brandon Orther'; [EMAIL PROTECTED]
Subject: RE: [PHP] strip ^M's ??


Here is a solution I can up with to solve all the CR and LF funniness coming
from different web browsers.

$input = ereg_replace("\r\n|\n|\r", "\n", $input);

-Original Message-
From: Brandon Orther [mailto:[EMAIL PROTECTED]]
Sent: Friday, March 02, 2001 9:43 AM
To: PHP User Group
Subject: [PHP] strip ^M's ??


Hello,

I am making a PHP script that upload formmail into people web directory with
all the settings easily configured on a web based setup screen.  Is there a
way to have php remove all ^M (Control M) from the file before it uploads it
to the server?

Thank you,


Brandon Orther
WebIntellects Design/Development Manager
[EMAIL PROTECTED]
800-994-6364
www.webintellects.com



--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]