Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #107.65K
~231 People Reached
This member's community profile is only visible to logged in members until they have earned 15 reputation points.
Favorite Forums
Web Development x 1
1 Posted Topic
Re: problem
If the was in a text field being returned as post var (it is a single character) try this $nbsp = chr(160); // the dec value for a HTML $data = str_replace($nbsp, " ", $data) // will turn the into a standard space
The End.