Hello Christian,
you must register first, then set the value!
session_register("script_total_time");
$script_total_time=(float)$total_time;
$step_times_array[$step]=$total_time;
session_register("step_times");
$step_times=serialize($step_times_array);
Tuesday, April 03, 2001, 2:35:10 AM, you w
Try to use $HTTP_SESSION_VARS, it may work for you.
There are many number of notes in Annotated PHP Manual. Some of them may help.
By the way, you don't need to serialize Array/Object for PHP4 session.
Regards,
--
Yasuo Ohgaki
"Christian Dechery" <[EMAIL PROTECTED]> wrote in message
[EMAIL PR
Why does one variable gets registered and the other don't (the order
doesn't alter anything.. I've tried)...
$script_total_time=(float)$total_time;
session_register("script_total_time");
$step_times_array[$step]=$total_time;
$step_times=serialize($step_times_array);
//echo "step_times=\"$step_t
3 matches
Mail list logo