Help for this page

Select Code to Download


  1. or download this
        my $existing_users = $dbh->selectall_hashref("SELECT `UserName`, `
    +LastAccessDate`, `Ignore` FROM $status_database.`Status`",1);
    
  2. or download this
        'user1' => {
            'UserName' => 'user1',
    ...
            'Ignore' => 'N',
            'LastAccessDate' => '0000-00-00'
        },
    
  3. or download this
        send_to_sub(%{$existing_users});
    
    ...
            print Dumper(\$existing_users);
            exit;
        }