I have a weard problem. I have two seperate files, with absolutely same code, one with problem, one without.
code:
<?php
$kll="šžćčš";
?>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<!-- Meta Tags -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="description" content="" />
<!-- END head -->
</head>
<!-- BEGIN body -->
<body>
<?php echo $kll; ?>
</body>
Now, when rendered it should output simple result as: šžćčš, but in one file it doesnt, it outputs: �����
What bugs me is that the code is absolutely the same for both files. You can check it out: http://www.husibegovic.com/tt.php (bad one) http://www.husibegovic.com/cc.php (good one)
Any help please? Thank you