Source Code:
(back to article)
<?php $str = "password123"; $salt = "abcd"; $encrypted_str = crypt($str, $salt); echo $encrypted_str; ?>
Result:
Report an issue