what are valid names for form variables

in PHP I could use the following in the name attribute of an input elt:
name            result
----------- -------------
"asdf"  normal
"asdf[]"        creates array w/ name asdf and appends submitted value to
that array
"asdf[jkl]"     creates array w/ name asdf and assigns asdf['jkl'] =
submitted value

Which of these (aside from the obvious first one) can I use in Python with
the 
various cgi'ish things included in WebWare?  Do they all (mod_python, one
shot, 
cgiwrapper, etc?) behave the same?  Are there other constructs available to
get 
vars into arrays?

Thanks,

--jim

_______________________________________________
Webware-discuss mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/webware-discuss

Reply via email to