- Timestamp:
- 11/26/04 17:05:27 (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/stable/cgi-bin/main.cgi
r83 r86 829 829 my $city; # Shut up Perl's "strict" scoping/usage check. 830 830 $sql = "select * from poolips where available='y' and". 831 " ptype='$base' and city='$webvar{ city}'";831 " ptype='$base' and city='$webvar{pop}'"; 832 832 } 833 833 … … 840 840 $ipcount{$data[0]}++; 841 841 } 842 $sth = $ip_dbh->prepare("select city from allocations where cidr=?"); 842 843 foreach my $key (keys %ipcount) { 843 $optionlist .= "<option value='$key'>$key [$ipcount{$key} free IP(s)]</option>\n"; 844 $sth->execute($key); 845 my @data = $sth->fetchrow_array; 846 $optionlist .= "<option value='$key'>$key [$ipcount{$key} free IP(s)] in $data[0]</option>\n"; 844 847 } 845 848 $cidr = "Single static IP";
Note:
See TracChangeset
for help on using the changeset viewer.