To strip away non alpha numeric characters in PHP you need to use a bit of regular expression magic.
$newString = preg_replace("/[^a-zA-Z0-9s]/", "", $oldString);
Great is you want to create search engine friendly URLs.
To strip away non alpha numeric characters in PHP you need to use a bit of regular expression magic.
$newString = preg_replace("/[^a-zA-Z0-9s]/", "", $oldString);
Great is you want to create search engine friendly URLs.
You must log in to post.