You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Mensaje de error: Fatal error: Uncaught TypeError: count(): Argument #1 ($value) must be of type Countable|array, bool given in C:\xampp\htdocs\php-login\login.php:18 Stack trace: #0 {main} thrown in C:\xampp\htdocs\php-login\login.php on line 18
Para solucionarlo hay que poner en la linea 18 del archivo login.php
if (is_countable($results) && count($results) > 0 && password_verify($_POST['password'], $results['password'])) {
Con esto se quita ese fatal error.
PD: Excelente proyecto