<?PHP
include_once("google-pagerank.php");
//Create Object
$url = "http://google.com";
$width = "";
$method = "image"; //image or css
$image_location = "images/";
$obj = new pr($url,$method,$width,$image_location);
echo $obj->pagerank();
?>