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
{{ message }}
This repository has been archived by the owner on Mar 7, 2021. It is now read-only.
Fatal error: Call to undefined function session_is_registered() in ...\main_login.php on line 3
la función "session_is_registered" es obsoleto en las nuevas versiones de php , la solución
isset($_SESSION['myusername']) es igual a session_is_registered(myusername)
o también
function session_is_registered($x){
return isset($_SESSION['$x']);
}
The text was updated successfully, but these errors were encountered: