softdevsalon
Member
Hi sir,
Just want to ask if how can I make a plugin and automatically updating the value on it?
I want to get the data and using this api of alexa
<?php
$url="http://site.com/";
$xml = simplexml_load_file('http://data.alexa.com/data?cli=10&dat=snbamz&url='.$url);
$rank=isset($xml->SD[1]->POPULARITY)?$xml->SD[1]->POPULARITY->attributes()->TEXT:0;
$web=(string)$xml->SD[0]->attributes()->HOST;
echo $web." has Alexa Rank ".$rank;
?>
Add a custom field on it in order to use or variable to use the alexa value.
Every site listed will need to updated teh value of alexa when there is a changes.
Just want to ask if how can I make a plugin and automatically updating the value on it?
I want to get the data and using this api of alexa
<?php
$url="http://site.com/";
$xml = simplexml_load_file('http://data.alexa.com/data?cli=10&dat=snbamz&url='.$url);
$rank=isset($xml->SD[1]->POPULARITY)?$xml->SD[1]->POPULARITY->attributes()->TEXT:0;
$web=(string)$xml->SD[0]->attributes()->HOST;
echo $web." has Alexa Rank ".$rank;
?>
Add a custom field on it in order to use or variable to use the alexa value.
Every site listed will need to updated teh value of alexa when there is a changes.