I'm trying to use an <img>
tag to display a webpage as a thumbnail. I would like the front page of the site to basically be a thumbnail image.
So for example, if I have google.com I'd like to convert the front page to an image and then do something like this:
<?php
$url = 'http://google.com';
//make this an image some how
echo '<img src="$url_image">';
Does anyone have an idea how to do this?