(php)is there a way to remove new lines(press enter) from a string?

Yes,

$string = "I
like
pie";

$string = str_replace("\n", "", $string);
$string = str_replace("\r", "", $string);

--------

after this $string = "I like pie"
 
Back
Top