def birthdate(): day,month,year = request.args(0),request.args(1),request.args(2)
On Dec 15, 11:31 am, Carl <[email protected]> wrote: > is there a pattern for displaying form values in the URL that the form > submits to? > > I'd like a form submitted that accepts three values to look like this: > > .../default/birthdate/2/9/2011 > > in this way users can copy or bookmark the page that displays the results > of the submission. > > this birthdate() function will then need to handle the form values or the > URL args appropriately.

