Can anyone tell me how to strip the "non-breaking space character" out of a string ?
I have tried almost everything I could think of to do this
str_replace("non-breaking space" ,"",$string);
str_replace(chr(160),"",$string);
etc. etc. etc.
Thanks for the time and the help
brad