I have an Variable which contains a variable name:
$sess_var_name = "my_session_data";
I can set $my_session_data by $$sess_var_name.
However, when I try to set $$sess_var_name in session_register, it stores only the value of the variable, not its name.
Any ideas for a work around?