Review my simple PageRank Checker!

Discussion in 'Reviews' started by thuankkk, Jan 30, 2009.

  1. #1
    thuankkk, Jan 30, 2009 IP
  2. siothach

    siothach Active Member

    Messages:
    656
    Likes Received:
    6
    Best Answers:
    0
    Trophy Points:
    60
    #2
    it get PR directly or fetch from some site? do you share this code? :D
     
    siothach, Jan 30, 2009 IP
  3. CaseyPC

    CaseyPC Active Member

    Messages:
    85
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    98
    #3
    it works, not much going on with it. Add some graphics and maybe some mod rewrite.

    I'm not sure how this website retrieves the pagerank, but below is a function I use in a PHP class. I've been working on a domain analysis tool, http://www.WhoisReport.net/

    
    function getPagerank () {
    	$url = $this->url['host'];
    	$checksum = $this->checksum($this->$url);
    	$url = "http://www.google.com/search?client=navclient-auto&ch=6$checksum&features=Rank&q=$url";
    	$data = $this->getURL($url);
    	preg_match('#Rank_[0-9]:[0-9]:([0-9]+){1,}#si', $data, $x);
    	$value = ($x[1]) ? $x[1] : 0;
    	return $value;
    }
    
    PHP:
     
    CaseyPC, Jan 30, 2009 IP
  4. xXMayhemXx

    xXMayhemXx Peon

    Messages:
    4
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #4
    I would put some more content or maybe put some ads on there at least you can make a buck....
     
    xXMayhemXx, Jan 30, 2009 IP
  5. river

    river Active Member

    Messages:
    1,632
    Likes Received:
    54
    Best Answers:
    0
    Trophy Points:
    88
    #5
    I like simple but I think the site is too simple. I would add a logo and more interesting site title. I would also add a favicon.
     
    river, Jan 30, 2009 IP
  6. kingofsanda

    kingofsanda Peon

    Messages:
    8,154
    Likes Received:
    218
    Best Answers:
    0
    Trophy Points:
    0
    #6
    To make the site look better you should do the following things:

    - Center align everything on the page.

    - Add some colors to the page.

    - Add a logo.
     
    kingofsanda, Jan 30, 2009 IP
  7. thuankkk

    thuankkk Active Member

    Messages:
    503
    Likes Received:
    10
    Best Answers:
    0
    Trophy Points:
    95
    #7
    it get PR directly from Google. This code can be found easily by Googling :)

    There's some ads before I post it here... :)

    I like simple, too. I'll try adding something, if it make my site better :)

    Thanks. I'll try now :)
     
    thuankkk, Jan 30, 2009 IP
  8. Louis Wong

    Louis Wong Peon

    Messages:
    25
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #8
    Smart tool, thanks for sharing.
     
    Louis Wong, Jan 30, 2009 IP
  9. lycos

    lycos Well-Known Member

    Messages:
    3,769
    Likes Received:
    176
    Best Answers:
    0
    Trophy Points:
    185
    #9
    Well it does what it's supposed to do. I think visitors won't be here just for PR checking. Adding additional tools like alexa rank, link popularity combined together can attract more visitors to it.
     
    lycos, Jan 31, 2009 IP
  10. thuankkk

    thuankkk Active Member

    Messages:
    503
    Likes Received:
    10
    Best Answers:
    0
    Trophy Points:
    95
    #10
    Thank you for your reviews :)

    Sometimes I only need to check PR, so alexa, quancast, compete, etc rank (e.g. wanna make link exchanges). So I searched, searched and searched but none matches my criteria. Some matches, but don't fast :(
    Then I create this site, and let it simple :)
     
    thuankkk, Jan 31, 2009 IP
  11. turk-designer

    turk-designer Peon

    Messages:
    33
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #11
    same thinking

    like this:
    [​IMG]

    and colors ;)

    web search change CheCk PR, just look logo
     
    turk-designer, Jan 31, 2009 IP
  12. thuankkk

    thuankkk Active Member

    Messages:
    503
    Likes Received:
    10
    Best Answers:
    0
    Trophy Points:
    95
    #12
    Look: http://onlypr.co.cc :) I tried it!
     
    thuankkk, Jan 31, 2009 IP
  13. ronnyeo

    ronnyeo Well-Known Member

    Messages:
    396
    Likes Received:
    10
    Best Answers:
    0
    Trophy Points:
    128
    #13
    If you can add an information that it's a valid or fake PR, it would be better.
    Good luck with your project!
     
    ronnyeo, Jan 31, 2009 IP