çalışmadı ama uğraşman bile +
bu ara.php
<?php
include("ayar.php");
?>
<?php
if($_POST){
$kelime = mysql_real_escape_string($_REQUEST['kelime']);
$sonuc = mysql_query("Select Count(kelime) From arananlar where kelime='$kelime'");
$sayi = mysql_result($sonuc,0);
if($sayi ==0){
mysql_query("Insert Into arananlar (zaman, kelime) Values ('".time()."', '$kelime')");
}
}
?>
---------------------------------
ayar.php de sql bilgileri var ustteki de sonuc.php idi.