Brett, I tried that one first, then I tried it like this
to delete all uncommon ascii chars, but no luck.
for($i=127;$i < 255;$i++){
$st_test = str_replace(chr($i),'',$str);
}
Then I tried it using trim, and still no luck.
trim($str,"\x00..\x1F");
I think the issue is that they are invisible to php string recognition. I am looking at the multibyte functions such as mb_ereg_replace but that requires a recompile, so I am looking for another solution that would not involve me recompiling, since the multibyte functions may not work either.
PD