我有这个代码
Departments
使用密码检查需要输入什么<form action="form.php" method="post">
<input type="password" name="password">
<input type="submit" name="submit">
</form>
@isset($_POST['submit'])
@if(password==user password or sth like that)
<p>the pasword is correct</p>
@else
<p>the pasword is wrong</p>
@endif
@endisset
?
答案 0 :(得分:1)
如果要在laravel上执行此操作,请签出此链接here。您应该在控制器上执行此控制。
但是,如果要在form.php上执行此操作,请先连接数据库并像这样检查smt
if($_POST['password'] == $user_password_from_database)
还要注意哈希函数。如果您使用任何哈希函数保存了密码,则应该对其进行解码。祝你好运