Fonksiyonlar dosyası veritabanı ayarları veritabanındada latin5_turkish_ci
ayarları utf8 yaptım yine olmadı

<?php
include("db.php");
$lisans["guncellemeler"]= ''; //file_get_contents("http://www.ucuzemlakscripti.com/guncellemeler/guncellemeler.txt");
$lisans["iletisim"]= ''; //file_get_contents("http://www.ucuzemlakscripti.com/guncellemeler/iletisim.txt");
$lisans["reklam"]= ''; //file_get_contents("http://www.ucuzemlakscripti.com/guncellemeler/reklam.txt");
$lisans["durum"]="Aktif";

function CacheBaslat(){
if (file_exists($cachefile))
{
if(time() - $cachetime < filemtime($cachefile))
{
readfile($cachefile);
exit;
}
else
{
unlink($cachefile);
}
}
ob_start();
}


function CacheBitir(){
global $cachefile;
$fp = fopen($cachefile, 'w+');
fwrite($fp, ob_get_contents());
fclose($fp);
ob_end_flush();
}



$baglan = @mysql_connect($vthost,$vtkullanici,$vtsifre);
if(!$baglan) die ("Mysql baglantisi saglanamadi");

@mysql_select_db($vtadi,$baglan) or die ("Veritabanina baglanti saglanamadi");
@mysql_query("SET NAMES 'latin5'");
@mysql_query("SET CHARACTER SET latin5");
@mysql_query("SET COLLATION_CONNECTION = 'latin5_turkish_ci'"); 
$xsonuc=mysql_fetch_array(mysql_query("SELECT * FROM ayar WHERE id='1'"));