27 May
2002
27 May
'02
3:07 p.m.
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.