I was just wondering if there was a function for removing all the cariage return+line feed characters out of a string. Or am I gonna have to write my own? (I did look a bit but never found one, I just want to make sure)
$string = str_replace("\r", '', $string); $string = str_replace("\n", '', $string);
thx I wouldnt of thought of that