I got a problem to make upper letters in php.
I tried this function:
function strtouper_srbija($string) {
$low=array("č" => "Č", "ž" => "Ž", "Š" => "š","Đ" => "đ","Č" => "č");
return strtoupper(strtr($string,$low));
}
and tried to use with some POST data from html page,text filed,but no succes,so if you have solutions,will be fine..
Also, I found solution with CSS, with text-transform: uppercase;
, but will be fine to have PHP example.