need to access $_SESSION

paulgfx

New member
Joined
Jan 16, 2006
Messages
1
Hi.
I need to use sessions into a directadmin plugin and it seems that directadmin deletes the session...
in the file1.php I have
$_SESSION["test"]="123";
and in the file2.php I want:
print($_SESSION["test"]);,
but now it is empty.

How can I get the session?

Thanks.

Paul
 
You can't use session_start() because DA already does in its code. So you must use their session as far as I know, except he is right, DA seems to be wiping the session information.

Does anyone know how to get around this while still using the plugin API?

G0nzo
 
Last edited:
Back
Top