with the following code I can get the html content of another page. This works really good:
<?php
$html = file_get_contents('XXX');
$dom = new DOMDocument();
$dom->loadHTML($html);
echo $html;
?>
But I have some results on the other page, which will loaded with a litte delay (some javascript will show this results) and my file_get_contents will only get the html content without this javascript results.
is there an way to call my other page, wait a little bit and get the content after the other site will completely loaded?