Help for this page

Select Code to Download


  1. or download this
    sub verify {
    #   open FILE, "$user_file" || die "Can't open user's login files: $!"
    +;
    ...
         }
         close FILE;
    }
    
  2. 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
    
  3. or download this
    while( <FILE> ){
    # = for each line of the file
    ...
    # = if the name doesn't match
    # go to the next line
    }