[Solved] Data screaping based on Search engines

You can do that using google api https://developers.google.com/custom-search/json-api/v1/overview and a related php client https://github.com/google/google-api-php-client. Later on you need to write a web scraper to download the websites (curl) and parse the html parser (i.e. https://github.com/paquettg/php-html-parser). I would, however, not recommend php for the latter task. There are much more sophisticated scraping tools available for python … Read more