Hello , Our company is looking to make a webscraper for some of our applications , we have the tool built so it outputs the html on the webpage using simpledom,
$html = file_get_html(‘http://xxx.com/search/records/search.x?record=x&Location=x’);
Is there a way to have multiple file_get_html on 1 page?
we tried
$html = file_get_html(‘http://xxx.com/search/records/search.x?record=x&Location=x’);
$html1 = file_get_html(‘http://xxx.com/search/records/search.x?record=x&Location=x’);
etc but it doesnt seem to work, any code that would help would be greatly appreciated
thanks
dan