1
Hi guys,
I cannot figure out how to handle my own custom sessions in my custom blocks.
Here is the situation:
1) I start session and assign a few variables, ex
session_start();
S_SESSION['test']= 'mystring';
?>
2) Next, I want to get this session value from the custom block, i.e. including
session_start();
echo S_SESSION['test'];
?>
However, it does not work and the XOOPS include files are preventing from showing thos sesion values. At the same time I can get it easily from the outside file (not the XOOPS shell)
Please, help, very urgent!!
Thanks
A