create multiple session in php

Solutions on MaxInterview for create multiple session in php by the best coders in the world

showing results for - "create multiple session in php"
Alexandra
12 May 2018
1//THIS WILL ALSO HELP YOU TO RUN SYNCHRONOUS CURL IN PHP
2session_name('s1');
3session_start();
4$_SESSION['name'] = 'Mai';
5session_write_close();
6
7session_name('s2');
8session_start();
9$_SESSION['name'] = 'Darren';
10session_write_close();