CodeIgniter Forums
password_hash - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: CodeIgniter 4 (https://forum.codeigniter.com/forumdisplay.php?fid=28)
+--- Forum: CodeIgniter 4 Support (https://forum.codeigniter.com/forumdisplay.php?fid=30)
+--- Thread: password_hash (/showthread.php?tid=90572)



password_hash - w.medina - 04-04-2024

Por favor su ayuda en:
Me da problema al conpilar en parametro $contraseña de la funcion password_hash.

            $contraseña = $this->request->getPost('password');
            $hash = password_hash($contraseña , PASSWORD_DEFAULT);


Porque?


RE: password_hash - ozornick - 04-04-2024

English translate, please


RE: password_hash - w.medina - 04-04-2024

(04-04-2024, 05:24 PM)ozornick Wrote: English translate, please

Please help in.
I'm having problem compiling in the $contraseña parameter of the password_hash function:

$contraseña = $this->request->getPost('password');
$hash = password_hash($contraseña , PASSWORD_DEFAULT);

Why?


RE: password_hash - kenjis - 04-05-2024

What's your exact problem?


RE: password_hash - InsiteFX - 04-05-2024

Read this article. it will show you how to use password_hash etc.

Implementing Secure User Authentication in PHP Applications with Long-Term Persistence (Login with "Remember Me" Cookies)