Answers for "is it possible create multiple session in php"

PHP
0

create multiple session in php

//THIS WILL ALSO HELP YOU TO RUN SYNCHRONOUS CURL IN PHP
session_name('s1');
session_start();
$_SESSION['name'] = 'Mai';
session_write_close();

session_name('s2');
session_start();
$_SESSION['name'] = 'Darren';
session_write_close();
Posted by: Guest on June-24-2021

Code answers related to "is it possible create multiple session in php"

Browse Popular Code Answers by Language