This form:
<form action="http://example.com/formprocessor"
enctype="text/plain"
method="post">
<label>Family name:
<input name='family' />
</label></p>
<p><label>Given name:
<input name='given' />
</label></p>
<p><label>Address:
<input name='address' />
</label></p>
<p><label>Zip code:
<input name='zip' />
</label></p>
<p><label>Email:
<input name='email' />
</label></p>
<p><label>Telephone:
<input name='telephone' />
</label></p>
<p><label>Comments:
<textarea name='comments' />
</label></p>
<p><label><input type="submit" value="Send data" /></label></p>
</form>
Generates this submission:
Content-Type: text/plain
family=Smith
given=John
address=123 Nowhere Str.
zip=10003
email=jsmith456@aol.com
telephone=212-555-3248
comments=Web Forms 2.0 is cool
Cannot use this type with repetitions.