//Самое простое для таблицы чито-то типа этого
<?php
header("Content-Type: text/html; charset=utf-8");
function browsera($urla) {
$urla="https://www.marathonbet.com/su/live/animation/3409357??openedMarkets=3409357";
$ch = curl_init($urla);
curl_setopt($ch, CURLOPT_URL,$urla);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);
curl_setopt($ch, CURLOPT_USERAGENT, "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)");
$html = curl_exec($ch);
curl_close($ch);
return $html;
}
preg_match_all('~<h2 class="category-path ">(.*?)<p class="prevention">~isu', browsera($urla), $text);
print implode('', $text[1]);
?>