In a CGI, I would like to be able to authenticate an NT users domain, user id and password for an intranet application I'm developing.
I would like the user to enter his info and pass this to a module that would essentially return true or false.
I tried
#!D:/Perl/bin/perl.exe
use Win32::AuthenticateUser;
@result = AuthenticateUser("domain", "smith", "abc123");
print @result;
But I do not get any results.
Does anyone have any suggestions.
thanks.