I'm trying to scrape that table in the middle, it's the only thing that I need from this web, and also it's the only thing I can't get from there. after few attempts, I created this little code that scrape ALL the html divs, please tell me what i'm doing wrong and what you think. thanks! (In the bottom: picture of the part from this page that I'm looking for)
<?php
include_once("simple_html_dom.php");
$link = 'http://www.oddsportal.com/soccer/argentina/copa-argentina/colon-santa-fe-ind-rivadavia-bTD4Oj2C/?r=1#1X2;2';
$html = file_get_html($link);
$table = true;
$i = 0;
while ($table)
{
$table = $html->find("div",$i++);
echo $table;
}
?>
Thanks again :)