evet haklısınız kodları atmayı unutmuşum kusura bakmayın..
kodlar aşağıda..
<?php
$ipno = $_SERVER['REMOTE_ADDR'];
if ($_SESSION['ipler'] != true) {
$_SESSION['ipler'] = $ipno;
$ip_yazi = $_SESSION['ipler'];
$saat = substr(strftime('%d %B %Y'),0,6);
//--------- ziyaretci ulkesi ------------
function ulkeBul($ip) {
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "http://ip-to-country.webhosting.info/node/view/36");
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, 'ip_address='.$ip.'');
$kaynak = curl_exec ($ch);
curl_close ($ch);
preg_match("'belongs to <b>(.*?)</b>'s", $kaynak , $donen);
return $donen["1"];
}
$ulkesi = ulkeBul($_SERVER["REMOTE_ADDR"]);
//---------------------------------------
$tarayici=$_SERVER['HTTP_USER_AGENT'];
$kayit=mysql_query("insert into ip_yazdir (ip_no,tarayici_adi,ulkesi,saati) values ('$ip_yazi','$tarayici','$ulkesi','$saat')");
}
else {
}
?>bunlarda her sayfada kullandığım oturum açma komutları
<?php
session_start();
ini_set('error_reporting', E_ALL^E_NOTICE);
@setlocale(LC_ALL, 'turkish');
?>hazır atmışken siteleride vereyim madem

kontrol edersiniz..
www.avsaadasitatil.com bu canının istediği tarayıcıda çalışan
www.avsa-adasi.org buda her tarayıcıda tık bile demeyen
ama her ikisinde de aynı kodlar var.. sorun ne acaba?