Skythrust
Member
- Jul 9, 2019
- 133
- 7
Hi there,
I have an PHP page which is showing names from a database table. over here there are special characters é,á,ö etc.
I would like to replace them for "normal" letters. I have tried to convert them with;
$output = iconv("utf-8", "ascii//TRANSLIT", $input);
but that doesn't work for me.
Example; Ok� it should be Oké
How can I solve this?
I have an PHP page which is showing names from a database table. over here there are special characters é,á,ö etc.
I would like to replace them for "normal" letters. I have tried to convert them with;
$output = iconv("utf-8", "ascii//TRANSLIT", $input);
but that doesn't work for me.
Example; Ok� it should be Oké
How can I solve this?