I am calling session_start() at the beginning of each page, and I am using this session to track all user selection. At a certain point during this session, I want to rename the session, without losing the data it is holding... Is there anyway to do this. I obviously cant use:
session_destroy();
session_name("blah");
session_start();
As i think that will kill all the data it is holding.
Thanks, Ryan