The code below saves my 'sessidsss' variable in a
sess_0987 and not in sess_123456 (which is set to 0 bytest). Why? How can I correct this?
/////////////////
session_id('123456');
session_start();
$SESSION['sessidsss'] = '0987';
//what code should be here?
session_id($SESSION['sessidsss']);
session_start();
///////////////////////