Here is my code
<?php
$url="http://www.google.co.in";
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$result = curl_exec($ch);
echo $result;
?>
When I try to display webpage in div it goes full page. I want to display it only in div which I want.
It is not getting code from it's original css file. And it is not displaying images.
I want to display webpage as it is in <div id="content"> </div>