https://www.tff.org/default.aspx?pageID=198 adresindeki yani alttaki görseldeki div i PHP ile siteme çekmek istiyorum DOM denedim ancak başarılı olamadım. Yardımcı olabilir misiniz?

2
●126

<?php $content="https://www.tff.org/default.aspx?pageID=198";
$source=new DOMdocument();
$source->loadHTMLFile($content);
$path=new DOMXpath($source);
$dom=$path->query("*/section[@id='right-container-ic']");
if (!$dom==0) {
foreach ($dom as $dom) {
print "<br>The Type of the element is: ". $dom->nodeName. "<br>";
$getContent = $dom->childNodes;
foreach ($getContent as $attr) {
print $attr->nodeValue;
}
}
}
?>