Re: [PHP] session vars with recursive form

2001-01-12 Thread bill
O.K., this seems to work: --- $thevals=array(alpha,beta,gamma,delta,epsilon); while (list($key, $val) = each($thevals)) { if ($HTTP_POST_VARS["$val"] && (!session_is_registered("$val"))) { session_register("$val"); } } --- bill wrote: > How can I correctl

RE: [PHP] session vars with recursive form

2001-01-12 Thread Javier Muniz
This is probably due to the fact that form values don't override session values... this is a feature, not a bug. (imagine if i could do: http://www.yourdomain.com/highsecurity.php?user=admin and magically become admin... very broken security) -jm -Original Message- From: bill [mailto:[E