When Web page is displayed in a div, Error: Unable to modify the parent container element before the
- by Jean
Hello,
A url is being displayed in a div as shown below
<div id="ipage">
<? $url = "http://www.yahoo.com";
$file1 = fopen($url, "r");
$content = file_get_contents($url);
echo $content;
?>
</div>
And I receive this error
Webpage error details
Message: HTML Parsing Error: Unable to modify the parent container element before the child element is closed (KB927917)
Bright idea to solve this.
Thanks
Jean