我如何加密从html表单发送到sh1哈希的密码

时间:2015-03-23 06:51:31

标签: php html encryption

我想从html表单发送encrypt密码,然后将其发送到mysql 这是我的代码:

$password=<?php echo sha1($password); ?>

我收到以下错误:

unexpected < error in ...... On line {line number}

如何解决此问题或以其他任何方式加密从表单发送的密码?

1 个答案:

答案 0 :(得分:2)

<?php  $password=sha1($password); ?>

试试这个