dogusLeader adlı üyeden alıntı: mesajı görüntüle
Class ile çekmeyi denedin mi ? kodu gönderebilirsen daha detaylı bakabilirim
<?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;
      }
   }
}
?>