Help for this page

Select Code to Download


  1. or download this
    open(TEMP,">$tmpfile") || die "Can't create $tmpfile.\n";
    $found_user = 0; # flag
    ...
       print TEMP "Username $username is not registered\n";
      }
    close(TEMP);
    
  2. or download this
          elsif ($username eq $in{'oldname'})
               {
                $found = 1;
                last;
               }