hi,
i did a php-application that uses sessions:
session_start();
// I've to do that, because i dont get the
// parameters as variables by server
// configuration
foreach ($_GET as $k => $v) { ${$k} = $v; }
foreach ($_POST as $k => $v) { ${$k} = $v; }
/** here i fill the array $session_vars */
session_register ("session_vars");
all went fine (of course this $_GET-stuff wasn't in my code previously, but that could not be the problem, could it?) unil i stored the app on a new server. now it looses all its session-info, everytime i reload the page.
doesn anybody has an idea, what i could do?
thanks in advance
stefan