Of that type? So you didn't even try the tutorial I posted?I tried tutorial of that type, but it didn't help.
<?php
require_once '../class.alexa.php';
$alexa = new Alexa();
echo $alexa->getRank("http://www.google.com");
?>
<?php
function alexaRank($domain){
$remote_url = 'http://data.alexa.com/data?cli=10&dat=snbamz&url='.trim($domain);
$search_for = '<POPULARITY URL';
if ($handle = @fopen($remote_url, "r")) {
while (!feof($handle)) {
$part .= fread($handle, 100);
$pos = strpos($part, $search_for);
if ($pos === false)
continue;
else
break;
}
$part .= fread($handle, 100);
fclose($handle);
}
$str = explode($search_for, $part);
$str = array_shift(explode('"/>', $str[1]));
$str = explode('TEXT="', $str);
return $str[1];
echo $str[1];
echo "Pankaj";
}
?>
<?php
function alexaRank($domain){
$remote_url = '[URL]http://data.alexa.com/data?cli=10&dat=snbamz&url=[/URL]'.trim($domain);
$search_for = '<POPULARITY URL';
if ($handle = @fopen($remote_url, "r")) {
while (!feof($handle)) {
$part .= fread($handle, 100);
$pos = strpos($part, $search_for);
if ($pos === false)
continue;
else
break;
}
$part .= fread($handle, 100);
fclose($handle);
}
$str = explode($search_for, $part);
$str = array_shift(explode('"/>', $str[1]));
$str = explode('TEXT="', $str);
return $str[1];
}
echo alexaRank('test.com');?>