in place of
Quote:
| Le-march%C3%A9-automobile |
Quote:
| Le-marche-automobile |
PHP Code:
function makeUrlFriendly($input) {
.....
.....
//added for french characters...
$output = str_replace("é", "e", $output);
$output = str_replace("à", "e", $output);
$output = str_replace("ê", "e", $output);
$output = str_replace("à", "a", $output);
$output = str_replace("â", "a", $output);
$output = str_replace("ù", "u", $output);






Linear Mode




