Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>Look up Curl... it is in php. <a href="http://php.net/manual/en/book.curl.php" rel="nofollow">http://php.net/manual/en/book.curl.php</a></p> <p>Here is a nice video on it, that might be related to something you're trying to pull off. <a href="http://www.youtube.com/watch?v=PvEJz6du7R0" rel="nofollow">http://www.youtube.com/watch?v=PvEJz6du7R0</a></p> <p>Here is also some code, to get the source code of a website using curl.</p> <pre><code>&lt;?php $ch = curl_init("http://www.example-webpage.com/file.html"); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_BINARYTRANSFER, true); $content = curl_exec($ch); curl_close($ch); echo $content; ?&gt; </code></pre> <p>One more way of doing what you want, is to use an iframe within a div...</p> <pre><code>&lt;html&gt; &lt;head&gt; &lt;title&gt;&lt;/title&gt; &lt;meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"&gt; &lt;style type="text/css"&gt; &lt;!-- #container{ width:300px; height:100px; border:1px solid #000; overflow:hidden; margin-left:50%; margin-top:5%; } #container iframe { width:1000px; height:750px; margin-left:-734px; margin-top:-181px; border:0 solid; } --&gt; &lt;/style&gt; &lt;/head&gt; &lt;body&gt; &lt;div id="container"&gt; &lt;iframe src="http://www.w3schools.com/" scrolling="no"&gt;&lt;/iframe&gt; &lt;/div&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> <p>Some websites don't allow you to iframe their site, so this might not work. Example, you can't iframe google, youtube, yahoo, and others.</p> <p>Hope this helped :D</p>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload