• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

PHP -- remove all non alphabet characters?

wait, do you want to remove numbers? or remove alpha?

if you want to remove all but numbers (and special chars), use the one i just posted

if you want to remove numbers
ereg_replace("[^[:alpha:]]", "", $yourvar)
 
i want to remove numbers, symbols, !@#$%^&*()<>?/.,;'":][{}|\-=_+ and all other non keyboard ascii symbols!
 
Back
Top