Alexa Traffic Rank PHP5 Class
This PHP5 class utilizes the web service provided by Alexa/Amazon to get the traffic information about the site. You’ll need to sign up for an account at Alexa to get the pair (access key and secret key). The first 10,000 queries per month are free. view plaincopy to clipboardprint? mParams = array( 'Service'=>'AlexaWebInfoService', 'AWSAccessKeyId'=>'YOUR ACCESS KEY', // access key id 'Operation'=>'UrlInfo', 'ResponseGroup'=>'Rank', 'Url'=>NULL, 'Timestamp'=>gmdate('Y-m-d\TH:i:s.000\Z'), 'Signature'=>NULL, ); $this->prepareSignature(); } /** ref: http://developer....