looking for simple backlink checker

Discussion in 'Programming' started by super, Jun 23, 2009.

  1. #1
    Will pay my last 7$ paypal for something basic, pm me for details
     
    super, Jun 23, 2009 IP
  2. phprightnow

    phprightnow Peon

    Messages:
    296
    Likes Received:
    4
    Best Answers:
    0
    Trophy Points:
    0
    As Seller:
    100% - 0
    As Buyer:
    100% - 0
    #2
    How do you check for google backlinks? Isn't there a specific command you can put into google like site:yoursite.com?
     
    phprightnow, Jun 23, 2009 IP
  3. farhang

    farhang Active Member

    Messages:
    383
    Likes Received:
    6
    Best Answers:
    0
    Trophy Points:
    60
    As Seller:
    100% - 0
    As Buyer:
    100% - 0
    #3
    It's link:sitename.com
     
    farhang, Jun 23, 2009 IP
  4. phprightnow

    phprightnow Peon

    Messages:
    296
    Likes Received:
    4
    Best Answers:
    0
    Trophy Points:
    0
    As Seller:
    100% - 0
    As Buyer:
    100% - 0
    #4
    <?php
    $domain = "digitalpoint.com"; // Domain to check backlinks
    
    $url = "http://www.google.com/search?q=link%3A".$domain;
    $file = file_get_contents($url);
    if (!strstr($file,'did not match any documents')) {
     $linksto = strstr($file,"of about <b>");
     $linksto = substr($linksto,strlen("of about <b>"));
     $linksto = str_replace(strstr($linksto,'</b>'),'',$linksto);
     echo $linksto.' backlinks';
    }
    else
    {
     echo 'No backlinks';
    }
    ?>
    PHP:
    No charge ;) Your welcome.
     
    phprightnow, Jun 23, 2009 IP
  5. super

    super Well-Known Member

    Messages:
    1,019
    Likes Received:
    15
    Best Answers:
    0
    Trophy Points:
    130
    As Seller:
    100% - 0
    As Buyer:
    100% - 0
    #5
    Thanks guys, however I need fo one who checks if backlink on specific sites are alive and linking to other specific sites.
    For instance to check if site X links to site Y, if site Z links to site U and so on.
     
    super, Jun 24, 2009 IP