Answers for "php session start does not work"

PHP
1

php start session if not started

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

session not working php

<?php
// make sure at the beginning of every file you have this:
session_start();
Posted by: Guest on June-12-2021

Code answers related to "php session start does not work"

Browse Popular Code Answers by Language