PROTECTED]]
> Sent: Monday, May 14, 2001 2:40 PM
> To: Johnson, Kirk; Php-General
> Subject: RE: [PHP] Easily Making Post Vars Session Vars
>
>
> Ok, I see where that's going.
>
> I actually was a bit off in my first posting.
>
> The form field names are a multi-
ulti-dimesion form variables into a session. Once I get it into a session I
think I can break it up no problem.
Thanks.
> -Original Message-
> From: Johnson, Kirk [mailto:[EMAIL PROTECTED]]
> Sent: Monday, May 14, 2001 1:07 PM
> To: Php-General
> Subject: RE: [PHP] Easi
This isn't quite what you are asking, but maybe it will be of help. Use the
loop below to create and assign GLOBAL versions of the $HTTP_POST_VARS:;
reset($HTTP_POST_VARS);
while(list($key, $val) = each($HTTP_POST_VARS)) {
$GLOBALS[$key] = $val;
}
Kirk
> -Original Message-
> From:
3 matches
Mail list logo