> When a form passes multiple, same-name checkboxes to a CGI > script (Perl, C, whatever), what is the "raw" format of > those form field values?
Assuming that the form was submitted via HTTP POST using the standard MIME type (application/x-www-urlencoded), they'd be strung together like this: myfield=value1&myfield=value2&myfield=value3... CF, in its quest to make things as easy for us as possible, makes this into a single variable with a comma-delimited list. But if you've enabled debug output or reference Form.Fieldnames directly, you can see the repeated field name in the Form.Fieldnames variable also created by CF. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ voice: (202) 797-5496 fax: (202) 797-5444 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription: http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4 FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Your ad could be here. Monies from ads go to support these lists and provide more resources for the community. http://www.fusionauthority.com/ads.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

