I have this situation:
if (
session_status() === PHP_SESSION_NONE
) {
echo "session not exist";
session_start();
} else {
echo "session exist";
}
It return always "session not exist"
too when page is reloaded the second time. How i can solve?