Imagine an raw url which i want to convert to lowercase, have all spaced replaced with dashes - and all comma's replaces with nothing. Currently I have this:
$pageurle = str_replace(' ', '-', $pagename);
$pageurle = strtolower($pageurle);
$pageurle = urlencode($pageurle);
which works but does not remove comma's. When I add this:
$pageurle = str_replace(',', '', $pagename);
then I get comma's removed, but all dashes become + ??? how do I solve this?
In general I would be happy to have a list of chars like - @ & or -- or other stuff which i would be happy to remove manually from my nice urls.
