Help for this page

Select Code to Download


  1. or download this
    #original (for the 1st column):
    $y = 0;
    ...
    for ($x = 0; $x < 15; $x++) {
        push @num, $ips[$x][$y];
    }
    
  2. or download this
    for ($x = 0; $x < 15; $x++) {
        push @newips, $ips[$x][0];
        push @num, $ips[$x][1];
    }