Jump to content

Class C Block Range


Ninjakreborn

Recommended Posts

<?php
    echo '<br /><h1>C Class Summary</h1><br />';
    echo '<table><tr><th>Backlink</th><th>IP Address</th></tr>';
    foreach ($unique_backlinks as $v) {
        echo '<tr>';
        echo '<td>'.$v.'</td>';
        echo '<td>'.gethostbyname($v).'</td>';
        echo '</tr>'; 
    }
    echo '</table>';
?>

This prints out all domains with there IP address. Is there a way to expand this to get the IP block range as well. Is there a function in PHP that'll retrieve the block range?

Link to comment
https://forums.phpfreaks.com/topic/173801-class-c-block-range/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.