Hello I am making a form in HTML and python and I am having a problem with processing the arguments

the problem comes in this section

<form method="POST">
  <input type="checkbox" name="brands" value="1" />
  <input type="checkbox" name="brands" value="2" />
</form>

and in the python I am using a self.request.form object to retrieve the arguments the problem is if I do something like

for b in brands:
   print b

it will just print out 1 even if both of them are in the self.request.form object

USING Werkzeug Framework

ANSWERED: I found you can retrieve a list of the same named inputs using this syntax

self.request.form.getlist('brands')
link|improve this question

77% accept rate
2  
You may want to say which framework. Just sayin' – cwallenpoole Aug 18 '11 at 20:04
sorry I am like the UI person stuff like this doesnt normally cross my path. The framework is werkzeug – BillPull Aug 18 '11 at 20:09
Great, thanks. I just added the Werkzeug tag – cwallenpoole Aug 18 '11 at 20:14
1  
You should put that ANSWERED section in an answer then mark that as a solution. – cwallenpoole Aug 18 '11 at 20:31
1  
Well, personally, I would like to give you a +1 for it, so if you put it as an answer (and respond here), I will. – cwallenpoole Aug 18 '11 at 20:50
show 1 more comment
feedback

1 Answer

up vote 1 down vote accepted

I found you can retrieve a list of the same named inputs using this syntax

self.request.form.getlist('brands')
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.