Ben google yazdınız kutusunu arandı anahtar kelimeleri almak istiyorum, benim web sitesine arama motoru tarafından geliyor ziyaretçi. Ben kodu yazdım ama benim kod Firefox Chrome ve IE çalışmıyor sadece çalışıyor. Herkes bu üstesinden nasıl görebilirsiniz?
$str=$_SERVER['HTTP_REFERER'];
$str_expl=explode("&",$str);
$pattern = '/q=/';
for ($i=0; $i<count($str_expl);$i++) {
$subject=$str_expl[$i];
preg_match($pattern, $subject, $matches, PREG_OFFSET_CAPTURE);
if(count($matches)>0) {
$store=$i;
}
}
$exact_str=explode("=",$str_expl[$store]);
$exact_str[1]=str_replace("%20"," ",$exact_str[1]);
echo "Searched Keyword= ".$exact_str[1];
Above is my code but this is not working in IE and chrome, as par my guess IE and Chrome has not format like &q='searched kewyord term". What will be any other idea. Thanks in advance