I'm almost perfectly certain this *should* work ... can anybody shed some light on why it doesn't?

$retval1 = ini_set ('session.use_trans_sid',false);
or
$retval1 = ini_set ('session.use_trans_sid','0');
or
$retval1 = ini_set ('session.use_trans_sid','Off');

$retval1 will be: bool(false)

and:
$retval2 = ini_get ('session.use_trans_sid');

$retval2 will be: string(1) "1"

I am setting this prior to any session_start and with output buffering both on and off, getting same result. I've also tried on different servers, both PHP version 4.3.2.

Any thoughts, comments, suggestions would be kindly appreciated.

Regards,
Jason k Larson


-- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php



Reply via email to