Answers for "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

Browse Popular Code Answers by Language