Coder needed to create software to check multiple website IP

Discussion in 'Programming' started by hitmanuk2k, Dec 9, 2008.

  1. #1
    Hello,

    I need a basic script which can take 100 URL's and return a list showing the URL with it's IP address.

    Software like SEOQuake pulls the IP and shows it in my browser for a single URL, but I need something which can pull the IP's from a list of multiple domains and return them to me in a simple list showing the domain URL alongside the IP address.
     
    hitmanuk2k, Dec 9, 2008 IP
  2. logylaps

    logylaps Active Member

    Messages:
    761
    Likes Received:
    25
    Best Answers:
    0
    Trophy Points:
    85
    As Seller:
    100% - 0
    As Buyer:
    100% - 0
    #2
    Hello,
    I can take care of this for you for $30 in 3 hours. Let me know.
     
    logylaps, Dec 9, 2008 IP
  3. NetworkTown.Net

    NetworkTown.Net Well-Known Member

    Messages:
    2,022
    Likes Received:
    28
    Best Answers:
    0
    Trophy Points:
    165
    As Seller:
    100% - 0
    As Buyer:
    100% - 0
    #3
    Hello

    I can do this for you at a price of $25. I have 3+ years experience in php coding.
    If you would like to take my offer please contact my via PM.

    Thanks
     
    NetworkTown.Net, Dec 9, 2008 IP
  4. SilentWarrior

    SilentWarrior Peon

    Messages:
    5
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    As Seller:
    100% - 0
    As Buyer:
    100% - 0
    #4
    Hello, I started coding it, can give you full working script with front end and simple storage of the URLs for $30.

    My coding is modular of course and you can use it in your own code if you want.

    Please contact me.

    Regards =)
     
    SilentWarrior, Dec 9, 2008 IP
  5. souviktheirishboy

    souviktheirishboy Peon

    Messages:
    211
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    As Seller:
    100% - 0
    As Buyer:
    100% - 0
    #5
    if its still open contact me
     
    souviktheirishboy, Dec 9, 2008 IP
  6. firman01

    firman01 Well-Known Member

    Messages:
    155
    Likes Received:
    2
    Best Answers:
    1
    Trophy Points:
    165
    As Seller:
    100% - 0
    As Buyer:
    100% - 0
    #6
    php5
    
    <?php
    $urls = $_REQUEST['urls'];
    $urls = urldecode($urls);
    $urls = stripslashes($urls);
    if(isset($urls) && $urls != '') {
      $list = explode("\n",$urls);
      $i = 0;
    
      echo "<ul>";
      foreach($list as $val) {
        $url = str_replace('http://','',$val);
        $url = str_replace('/','',$url);
        $url = trim($url);
        $ip = dns_get_record($url, DNS_A);
    
        echo "<li>";
        echo '['.$url. '] : '.$ip[0][ip];
        echo "</li>";
        unset($ip);
        unset($url);
        if($i == 100) break;
      }
      echo "</ul>";
    }
    ?>
    
    <html>
    <head>
    </head>
    
    <body>
    <form method="post">
    list url (1url per line: blablabla.com)
    <TEXTAREA NAME="urls" COLS=40 ROWS=20 scroll="auto"></TEXTAREA>
    <input type="submit">
    </form>
    </body>
    </html>
    
    
    Code (markup):
     
    firman01, Dec 9, 2008 IP