Leider auch das hat nichts gebracht es wird nichts ausgegeben ich poste nochmal meinen bisherigen gesamt code :
Bis hier hin bekomme ich alle Daten nur als Fliesstext und ohne die richtige Formatierung der Tabelle bzw. ohne Tabelle
PHP:
<head>
<meta charset="utf-8">
<title>Statistik</title>
<script src="/sources/default.js" type="text/javascript"></script>
</head>
<body>
<?php
$ch = curl_init( 'http://www.meineseite.de' );
curl_setopt( $ch, CURLOPT_RETURNTRANSFER, true );
curl_setopt( $ch, CURLOPT_BINARYTRANSFER, true );
$content = curl_exec( $ch );
curl_close( $ch );
$doc = new DOMDocument();
$doc->loadHTML( $content );
$element = $doc->getElementById( 'content-row2' );
$element = ( $element === null ) ? '' : $element->nodeValue;
echo $element;
?>
</body>
Bis hier hin bekomme ich alle Daten nur als Fliesstext und ohne die richtige Formatierung der Tabelle bzw. ohne Tabelle