- or download this
sub verify {
# open FILE, "$user_file" || die "Can't open user's login files: $!"
+;
...
}
close FILE;
}
- or download this
for each line in the file
split up into name and password
...
cry for help or simply die of error ...
if the name doesn't match
go to the next line
- or download this
while( <FILE> ){
# = for each line of the file
...
# = if the name doesn't match
# go to the next line
}