Need help,
i'm trying to use thumbalizr.com, to generate website thumbnails.
they have one api, to check if thumbnail is in cache.
Ho can tel me hown include the php file in template?
this the php file:
<?
define ("_THUMBALIZR",1);
require_once("config.inc.php"); // get config and functions
$image=new thumbalizrRequest(); // create object
$image->request("http://www.ebay.com"); // send request
if ($image->headers['Status']=="OK" || $image->headers['Status']=="LOCAL") { // if picture is available
$image->output(); //dump binary image data
} else {
print_r($image->headers); // print text result output - you can dump your own "queued" picture here
}
?>
In attachements are the other php files.
thanks



