WhatRanking Updates

There's been a few updates to WhatRanking today. This little page just goes over what these are and how you can use them.
  • Mass Checking (up to 10) on website
  • Parser
  • Mass Checking (up to 25) in plain text

    Mass Checking
    When on the check pagerank page (http://WhatRanking.com) you can now check up to 10 domains by seperating with a comma in the text area. This will return the same format that the website normally uses but with multiple results.

    Parser
    You can now have a pagerank checker on your own website, blog or forum. The URL for the parser is http://whatranking.com/parser.php?url=google.com - Below is an example code which will put a textbox onto your website, which once a domain is entered it'll grab the pagerank from whatranking and display it on your website as plain text where you can then choose the formatting yourself.

    <form name="pagerank" method="post" action="" />
    <input name="url" type="text" "size=20" />
    <input type="submit" value="Get PR" />
    </form>

    <?php
    if (htmlentities($_POST['url'])) {
    $pr = file_get_contents("http://WhatRanking.com/parser.php?url=".htmlentities($_POST['url']));
    echo "PR for ".htmlentities($_POST['url']).": ".$pr;
    }
    ?>

    Multi Checking (plain)
    There's now a page where you can check the ranking of up to 25 domains. The results will appear in plain text as [domain] - PR: [pr], making it ready for you to copy/paste your results to where you wish. Here is an example URL of this feature - http://whatranking.com/multi.php?url=google.com,facebook.com,amazon.co.uk,whatranking.com,ebay.co.uk

    You can also customise the format of the multi checker by adding &format= to the end of the link. Below are the variables you can use in your formatting:
    %pr% - PR result, %url% - URL, %today% - Todays date (13th), %month% - This month,%year% - This year, %hour% - Hour, %minute% - Minutes, %second% - Seconds, %timedate% - Already made timestamp
    You can put text in this too. For example you could use
    &format=Pagerank result for %url% = %pr%. Checked: %timedate%