Hi!
I use PHP on linux and apache.
I have a wizard based registration where on chooses date.
The first time I manage to register the chosen POST variables into session variables, but the second time the wizard is used, I don't manage to update the session variables with the new date values,
I use:
tyear = $POST['tyear'];
$s_tyear = $tyear;
session_start();
session_register("s_tyear");
$SESSION["$s_tyear"] = $tyear;
But the value is not changed to second time the application is used?
Can anyone help me out?
Any help is appreciated!
Best regards,
Tom-Erik