I need to change encoding and on UTF8
does not work I diacritics!
I changed the database encoding on UTF8
after index.html charset
I have my language slovak.php (Slovakia) diakritics +ľščťžýáíé=´úäô
but I am not the characters, please!!
in bbcode.php is this function
function spChars($txt)
{
$txt = str_replace("Ä","Ä",$txt);
$txt = str_replace("ä","ä",$txt);
$txt = str_replace("Ü","Ü",$txt);
$txt = str_replace("ü","ü",$txt);
$txt = str_replace("Ö","Ö",$txt);
$txt = str_replace("ö","ö",$txt);
$txt = str_replace("ß","ß",$txt);
$txt = str_replace("€","€",$txt);
$txt = str_replace("Ä","Ae",$txt);
$txt = str_replace("ä","ae",$txt);
$txt = str_replace("Ü","Ue",$txt);
$txt = str_replace("ü","ue",$txt);
$txt = str_replace("Ö","Oe",$txt);
................ this is a problem?