I have the following line in a php script which returns the proper encrypted password:
$epass = crypt($pass,substr($pass,0,2));
I am trying to to the same thing with cgi, but no matter what I do, the password in not encrypted properly.( so the output is the same as the php line..)
Any help would be appreciated!
Bob
$epass = crypt($pass,substr($pass,0,2));
I am trying to to the same thing with cgi, but no matter what I do, the password in not encrypted properly.( so the output is the same as the php line..)
Any help would be appreciated!
Bob