Google Rank button code snippets
Use these code snippets to show your visitors the page ranking of your website or blog.
Don't
use the code for one domain on several other domains without changing the value of the URL (i.e. showing the PR from you main page on
subpages).
Some rules for using this free Page Rank checker tool
- Use the button only for the URL from the page where the Page Rank button is placed. It's not allowed to use the button for listing on link or directory page.
- Don't use this Page Rank checker tool on websites with illegal or pornographic content
- Don't use other URL's then the one from the page where the Page Rank button is placed (to get a higher Page Rank)
- You may use all kind of web address (URL) but take care about the maximum length of 100 characters.
- Use the html code without any changes on your website(s), the only part thats its allowed to change is "www.yoursite.com". If you change the rest of the code, the service will be suspended for your website for ever!
- We preserve us the right to block the access to the Pagerank database (in case of any abuse)
Code for a single webpage (i.e. the homepage)
Code for multiple webpages (using HTML and PHP)
<?php
$url = $_SERVER['HTTP_HOST'].$_SERVER['PHP_SELF'];
echo "<a href=\"http://pagerank.couttsnet.com/\" title=\"Free PageRank checking tool\" target=\"_blank\">
<img src=\"http://pagerank.couttsnet.com/pr.php?url=".$url."\" border=\"0\" alt=\"PageRank\" /></a>";
?>
<?php
$url = $_SERVER['HTTP_HOST'].$_SERVER['PHP_SELF'];
echo "<a href=\"http://pagerank.couttsnet.com/\" title=\"Free PageRank checking tool\" target=\"_blank\">
<img src=\"http://pagerank.couttsnet.com/pr.php?url=".$url."\" border=\"0\" alt=\"PageRank\" /></a>";
?>
Code for a sitewide usage (client side code using JavaScript)