Hi!
This is my problem. If I write letter č or ć in textarea, and then if I use php to check if there in textarea is letter č or ć, it doesn't work, here's code:
<?php
if($_POST['sub']){
$tekst=$_POST['tekst'];
$array=array("č"); //& # x 010D iz unicode for č, i also tried ascii, and I also tried č
if(in_array($tekst,$array)){
echo "ok";
}
$var="č";
if($tekst==$var) echo "yes";
}
?>
<form method="post" action="">
<textarea name="tekst"></textarea>
<input type="submit" name="sub">
</form>