- 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";
}
- or download this
key1: [
The Response from key1]
key2: [
The Response from key2]
- 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";
}
- or download this
The Response from key1]
The Response from key2]