Hi all
seems that session_regsiter(var) doesn't work anymore with php 4.3.3 as it has by defulat register global = false...I have found some info on the net..seems that to register a value you have to do like that
$var="toto";
$_SESSION['var']=$var;
session_register("var");
can any one confirm that or give me the good solution ?
thanks