Can some one point me to some PHP Script to get Alexa Rank?
The old stuff doesn't work.
As
http://alexa.com/data/details/traffi.../sitepoint.com
No longer gives and xml response but redirect you?
Thanks SitePoint
| SitePoint Sponsor |
Can some one point me to some PHP Script to get Alexa Rank?
The old stuff doesn't work.
As
http://alexa.com/data/details/traffi.../sitepoint.com
No longer gives and xml response but redirect you?
Thanks SitePoint
I was looking for a similar thing the other day. Here's one I found that works:
abcoder.com/php/get-google-page-rank-and-alexa-rank-of-a-domain-using-php/
Ta da!
PHP Code:<?php
$xpath = new DOMXPath(@DOMDocument::loadHTMLFile(
sprintf(
'http://www.alexa.com/siteinfo/%s',
'sitepoint.com'
)
));
echo $xpath->query("//div[@class='data down']")->item(0)->nodeValue; #1,023
?>![]()
@AnthonySterling: I'm a PHP developer, a consultant for oopnorth.com and the organiser of @phpne, a PHP User Group covering the North-East of England.
Wow, that is a lot easier than the method posted on abcoder.
Thanks Anthony.
Amazing! I love the Ta Da too. Next time can i get a drum roll before the tada?
Haha
Thanks a bunch Anthony works like a charm![]()
Bookmarks