Hello,
I want help in python for checkbox form
i use this html code
<input name="do" type="checkbox" value="file1" />
<input name="do" type="checkbox" value="file2" />
<input name="do" type="checkbox" value="file3" />
<input name="do" type="checkbox" value="file4" />
-----------
and after submet
for i in query.getvalue("do"):
print "_%s_<br>" %(i)
when i check more than 1 file the loop appear good
file1
file2
file4
If i checked one only appear wrong like
f
i
l
e
3
how can fix this
Thanks