I'm trying to figure out how I would encrypt a password to be used in the .htpasswd.
<?php ... $password = "123abc"; $encrypt_pw = ?????? ... ?>
Thanks, Brian
$encrypt_pw = crypt(password);
goto www.php.net/crypt
Hope that helps!
Chris King
Thanks,
Brian