Help for this page

Select Code to Download


  1. or download this
    my %settings;
    while ((undef, my ($name, $value)) = $sql->fetchrow_array()) {
        $settings{$name} = $value;
    }
    
  2. or download this
            my %settings;
            while ((my ($tmp,$name, $value)) = $sql->fetchrow_array()) {
    ...
            }
            $sql->finish();
            print $lastlog."\n";