I was trying something like that:
$url = “http://www.howtogeek.com”;
$str = file_get_contents($url);
That displays the whole website. It's not the website in the $url
, and the website I'm trying to retrieve results doesn't have an API that I could use. I want to get number of results titles of results and so on. Is there any easy way to do this?