Call to undefined function session_register()

php, session

Solution

This function has been DEPRECATED as of PHP 5.3.0 and REMOVED as of PHP 5.4.0.

Ref: http://www.php.net/manual/en/function.session-register.php

Dont use `session_register()`, `session_is_registered()` and `session_unregister()`

You can use `$_SESSION[]` instead of that

Like as mentioned below:

$_SESSION['username']= "Your value";

Problem

``` session_register("username"); // session checker for pages $_SESSION['username']= $username; // storing username in session ``` I am doing a PHP login system but when I click login system I go this error Fatal error: Call to undefined function session_register() in C:\xampp\htdocs\loginscript\auth_check.php on line 24 I am using PHP 5.3 how can I solve this problem?

Original source

Related problems