RE: [PHP] Easily Making Post Vars Session Vars

2001-05-14 Thread Johnson, Kirk
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:

RE: [PHP] Easily Making Post Vars Session Vars

2001-05-14 Thread Jason
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] Easily Making Post Vars Session Vars This isn't quite what you are asking, but maybe

RE: [PHP] Easily Making Post Vars Session Vars

2001-05-14 Thread Johnson, Kirk
, 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-dimesional array. The goal it to make writing all of the info