Thread
:
removing ^M characters?
View Single Post
11-18-2004, 06:17 AM
#
8
(
permalink
)
idx
Senior Grasshopper
Join Date: Jun 2003
Location: FL
Posts: 317
PHP Code:
$str
=
"ms cruft\r\n"
;
$str
=
str_replace
(
"\r\n"
,
""
,
$str
);
This might work too..
idx
View Public Profile
Visit idx's homepage!
Find More Posts by idx