This should not be hard to do...

I've got a form with some checkboxes that
are dynamically created from a query.

I use cfoutput query = "get_unregistered" to build the form.

The checkboxes are build like this:

<input name="shooter_#currentrow#" type="checkbox" value="#shooter_id#">

I would expect that to translate into rendered HTML as:

<input name="shooter_1" type="checkbox" value="8">
<input name="shooter_2" type="checkbox" value="9">
<input name="shooter_3" type="checkbox" value="10">
<input name="shooter_4" type="checkbox" value="11">

But the values for the checkboxes are rendered as:

shooter_1: 891011
shooter_2: 91011
shooter_3: 1011
shooter_4: 11

Why would the values be combining like that for the checkboxes?
And what should I use to separate them?

Thanks,

Rick




~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;203748912;27390454;j

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:311534
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Reply via email to