How to get google search seuggest with PHP?
You can do this with the following codes.
<?php
function getir($keyword) {
$keywords = array();
$data = file_get_contents('http://suggestqueries.google.com/complete/search?output=firefox&client=firefox&lr=lang_tr&hl=tr&q='.urlencode($keyword));
$data = iconv("ISO-8859-9", "UTF-8", $data);
return $data;
}
echo (getir('How to made '));
?>
function getir($keyword) {
$keywords = array();
$data = file_get_contents('http://suggestqueries.google.com/complete/search?output=firefox&client=firefox&lr=lang_tr&hl=tr&q='.urlencode($keyword));
$data = iconv("ISO-8859-9", "UTF-8", $data);
return $data;
}
echo (getir('How to made '));
?>
I write script so that display Turkish characters.
Please edit the following variables for yourself and your language.
- lr=lang_tr
- hl=tr
- ISO-8859-9
I hope it has been useful.
İlk Yorumu Sen Yap