I'm trying out different salts to store passwords, but I'm getting an error
Parse error: syntax error, unexpected 'print' (T_PRINT) in
C:\xampp\htdocs\files\hash.php on line
6
PHP Code:
<?php
$password= "Pcmac123$";
$salt="1B2BVC#";
$encrypt= sha1(md5($salt.$password))
print $encrypt;
?>