Delete new lines
am 05.10.2007 12:13:40 von vincent.marguerit
Hello,
I would like to delete the new lines, I mean the \n, so Itried this:
str_replace($row['facts_content'], "\n", "") ;
But the new lines are still there, how can I do ?
Thanks,
Vincent.
Re: Delete new lines
am 05.10.2007 12:41:54 von Lars Eighner
In our last episode, <1191579220.902577.65950@o3g2000hsb.googlegroups.com>,
the lovely and talented Defacta broadcast on comp.lang.php:
> Hello,
> I would like to delete the new lines, I mean the \n, so Itried this:
> str_replace($row['facts_content'], "\n", "") ;
> But the new lines are still there, how can I do ?
You might try putting the arguments in the right order. RTFM.
--
Lars Eighner
Countdown: 473 days to go.
What do you do when you're debranded?
Re: Delete new lines
am 06.10.2007 00:21:43 von Macca
str_replace(find,replace,subjet);
so
str_replace("\n", "" ,$row['facts_content']) ;