Answers for "php how to check if session variable is set"

PHP
2

check if session variable exists php

if (isset($_SESSION['errors']))
{
    //Do stuff
}
Posted by: Guest on May-06-2020

Code answers related to "php how to check if session variable is set"

Browse Popular Code Answers by Language