Ok i finaly find a solution. In fact in PHP4.3, when the resgister_globals is set to Off in the php.ini, you need to use :
- isset($_SESSION['var']) instead of session_is_registered()
- $_SESSION['var'] = ... instead of session_register()
- unset($_SESSION['var']) instead of session_unregister()
Tested and approved !