how to get ALL google search results using api [duplicate]
This question already has an answer here: Google AJAX API - How do I get more than 4 Results? 7 answers I need to get google search results for query. But using something like this $query = 'Nikita Platonenko'; $url = "http://ajax.googleapis.com/ajax/services/search/web?v=1.0&q=".urlencode($query); $body = file_get_contents($url); $json = json_decode($body); var_dump($json) i get only 4 results, I've already read about google ajax search but couldn't understand it. Please advise how to get all resulsts, or just first 100 results? Monchito <?php $query = 'Nikita%20Platonenko'; $url = "http:/