in reply to Database matching
Hope this helps.if ($dbm{$accountAD} eq $accountID){ do_something(); # got an existing one; } elsif (defined $dbm{$accountAD}) { do_something_else(); # a mismatch? } else { $dbm{$accountAD} = $accountID; #set a new one }
|
|---|