Possible Duplicate:
Extracting the content of an element from an external page
Is there any way to put external page into my page but not with iframe. Currently I using:
<?php
$homepage = file_get_contents('http://www.google.com/');
echo $homepage;
?>
but this is not really elegant solution. Is there some elegant solution for this? maybe with jquery, java script, php ... or some other ... ??? What I need is to show external page but to can see the source code od that external page...
UPDATE: some browser in browser solution or something similar???