Help for this page

Select Code to Download


  1. or download this
    for my $key (keys %logins) {
            my $response = get("http://www.dtdns.net/autodns.cfm?id=$key&p
    +w=$logins{$key}&ip=$ip");
            print "$key: [$response]\n";
    }
    
  2. or download this
    key1: [
    The Response from key1]
    key2: [
    The Response from key2]
    
  3. or download this
    for my $key (keys %logins) {
            my $response = get("http://www.dtdns.net/autodns.cfm?id=$key&p
    +w=$logins{$key}&ip=$ip");
            $response =~ s/\n//g;
            print "$key: [$response]\n";
    }
    
  4. or download this
    The Response from key1]
    The Response from key2]