Today I’ll show you the script that allows to get Google Pagerank value for any site you like. Note, that Google limits the number of toolbar queries per IP per day.
<?php
function StrToNum($Str, $Check, $Magic) {
$Int32Unit = 4294967296;
$length = strlen($Str);
for ($i = 0; $i < $length; $i++) {
$Check *= $Magic;
if ($Check >= $Int32Unit) {
$Check = ($Check [...]