Page 1 of 1

Enabling trans_sid_id

Posted: Thu Mar 25, 2004 8:27 am
by lostboy
I am working on a site where sessions are doing weird things - like dropping between pages. I want to see if, by enabling trans_sid, I can propogate the session id in the url and keep the sessions alive....

Having trouble getting the ini_set statement to work...


Code: Select all

//index.php 
session_start();
ini_set(use_trans_sid,1);

What is the correct way to do this? Should I merely add the id to the links between the pages by appending it to the URL?

TIA