On 22 Jan 2008, at 18:46, Eric wrote: > I understood that to be the 'right way' to handle a list of options > with CGI. Am I mistaken? How should it be done with web.py?
i = web.input(parts=[]) Passing a list as a default value will make web.py return it as a list of values. Other than that, all your code looks fine. --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
