Tabellen

Herren

[insert_php]
libxml_use_internal_errors(true);
$doc = new DOMDocument;
$doc->preserveWhiteSpace = false;
$doc->strictErrorChecking = false;
$doc->recover = true;
$doc->loadHTMLFile(‚https://stbv.at/maenner/ml-gd/‘);
$xpath = new DOMXPath($doc);
$query = „//div[@class=’table-responsive sp-table-wrapper‘]“;
$entries = $xpath->query($query);
$htmlString = $doc->saveHTML($entries->item(0));
echo $htmlString;
[/insert_php]