[Zope] how to submit variables with an html

Dennis Allison allison@sumeru.stanford.EDU
Mon, 27 May 2002 08:07:36 -0700


From: florian@fischer.tc
> 
> i have a a question.
> How do i submit more than one var. with an html-form?
> 

>From your one-variable example, I assume what you want to do is submit 
values to a form via the GET method.

<a href=theform?name1=value1&name2=value2&name2=value3> text </a>

In the values, non-alphanumeric characters must be replaced by their 
hex equivalents (' ' => %20, '/'=%2F, etc) since there is no quoting
convention.