<?php
extract($_GET);
$data = file_get_contents("http://ajax.googleapis.com/ajax/services/feed/find?v=1.0&q=" . $category );
echo json_decode($data);
?>
Это дает мне ошибку: Исправляемая фатальная ошибка: объект класса stdClass не может быть преобразован в строку
попробуй это:
<?php
$data = file_get_contents("http://ajax.googleapis.com/ajax/services/feed/find?v=1.0&q=".$_GET["query"]);
$object = json_decode($data);
if(count($object->responseData->entries)>0){
foreach($object->responseData->entries as $entry){
echo '<pre>';
print_r($entry);
echo '</pre>';
}
}else{
echo 'no data';
}
?>
Вы должны позвонить по http://example.com/thisfile.php?query=my_text
Других решений пока нет …