On 10/3/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > hi > i have a form from which i submit this: > > <input type="hidden" name="test" value="9999"> > <input type="hidden" name="test" value="8888"> > > and i do > i = web.input(test=[]) > > i.test is ['8888'] > my expected value is ['9999','8888'] > can you tell what is wrong? > thanks
Try doing <input type="hidden" name="test[]" value="9999"> <input type="hidden" name="test[]" value="8888"> Clutching at straws here, but it just might work :-) -- Hermann Käser http://theragingche.com/ http://semicir.cl/user/hermzz --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "web.py" 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/webpy?hl=en -~----------~----~----~----~------~----~------~--~---
