Answers for "how to check if a session has started in php"

PHP
1

check if session is started php

if (session_status() == PHP_SESSION_NONE) {
    session_start();
}
Posted by: Guest on November-30-2020

Code answers related to "how to check if a session has started in php"

Browse Popular Code Answers by Language