On Feb 16, 3:44 pm, Rodrigo Dewes <[email protected]> wrote:
> I tried to get the form values on this way:
>
> form.vars.test
>
> and printed this way
>
> for x in form.vars.test :
>     print x

I think you want:

if request.vars.test:
  for x in request.vars.test:
    print x
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"web2py Web Framework" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/web2py?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to