> Oh! Okay, so in my case how do I then pickup q=a (or whatever the
> browser sends) and limit=150? Do I still use web.input?
Yes, you can use both at once. For example if you have:
urls = ('/name/(.*)', 'person')
class person:
def GET(self, name):
i = web.input()
print i.source + ' says hello to ' + i.name
Then '/name/Joe?source=Bob' will return 'Bob says hello to Joe'.
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---