Submitting input-form data to server

marca@ncsa.uiuc.edu (Marc Andreessen)
Date: Sun, 5 Sep 93 01:41:50 -0500
From: marca@ncsa.uiuc.edu (Marc Andreessen)
Message-id: <9309050641.AA26079@wintermute.ncsa.uiuc.edu>
To: wei@sting.berkeley.edu (Pei Y. Wei)
Cc: TONYJ@scs.slac.stanford.edu, hackers@ora.com, putz@parc.xerox.com,
        www-talk@nxoc01.cern.ch, ebina@ncsa.uiuc.edu, robm@ncsa.uiuc.edu
Subject: Submitting input-form data to server
In-reply-to: <9309050231.AA06656@sting.Berkeley.EDU>
References: <9309050231.AA06656@sting.Berkeley.EDU>
X-Md4-Signature: 6d048cbb940a644fea2c07c03c5341a7
Status: RO
Pei Y. Wei writes:
> 	<LI><INPUT name="toppings" type="check" value="artichoke">Artichoke
> 	<LI><INPUT name="toppings" type="check" value="mushroom">Mushroom
> 	<LI><INPUT name="toppings" type="check" value="olive">Olive
> 	<LI><INPUT name="toppings" type="check" value="pastrami">Pastrami

Following up my previous note, my suggestions leave unsolved the
problem of how to represent a situation like the above, where a single
name can have two or more values.  Two possibilities:

* Multiple name=value pairs with the name repeated each time.
* A special syntax for representing multiple values; e.g. 
  name=value|value|value

First one probably makes more sense, and parallels Pei's approach.

Cheers,
Marc