Hi,
when I do :
$foo = 'bar';
session_register($foo);
${$foo} = "foobar";
I can acces to $bar only in the function where I do the affectation. I dont understand why because a session variable is global (after session_register('bar') if I do session_is_register('bar') it returns TRUE every where in the source but $bar is empty).
Is somebody can help me???
AS