Hi,
I need to remove ASCII char that you can get by typing ALT+255 from the strings typed from users.
I have tryed rtrim but it was not working...
Anybody here could help me ?
Thanks a lot
Hi,
I need to remove ASCII char that you can get by typing ALT+255 from the strings typed from users.
I have tryed rtrim but it was not working...
Anybody here could help me ?
Thanks a lot
str_replace(chr(255),'',$string);
Unfortunatly it doesn't seems to work :-(
It will not remove any ALT+255 char :-(
What I need is to stop users use names like "donald " typed by "donald[ALT+255]" ...it should be converted to "donald".
Could anybody help ?
Thanks a lot