I have strange problem when special chars in loop when add br and use specal chars, if don´t use words with special chars no have problems but when use special chars and use br for show one under other show strange chars
For example if don´t use br :
$text="ála";
for($d=0;$d<strlen($text);$d++)
{
echo $text[$d];
}
Result: ála
If use br show strange chars
$text="ála";
for($d=0;$d<strlen($text);$d++)
{
echo $text[$d];
print "<br>";
}
Result : � � l a
I don´t know how fix it´s and don´t underetand why happend this issue, howewer here can explain what happend, regards