Given a construct like this:

<input type="checkbox" value="red" name="color[]" />
<input type="checkbox" value="green" name="color[]" />
<input type="checkbox" value="blue" name="color[]" />

if POST'ed to a PHP page the $_POST super-global will add the values of the checked checkboxes to an array color.

Is this a PHP-only convention or do other web-aware languages follow it also? If the latter, what other languages/libraries follow this convention?

link|improve this question

65% accept rate
1  
I've never seen it anywhere else then PHP yet, but that doesn't mean much of course :) – Wrikken Apr 6 '11 at 23:51
Classic ASP will give you one field (not an array) with comma-separated values whenever you have HTML elements sharing a name. That's not exactly the same as PHP, but gives you an idea. – Guttsy Apr 6 '11 at 23:53
feedback

1 Answer

I've seen it in ASP.NET MVC but it usually needs an index added, eg name="color[0]", name="color[1]", etc

Example here - Wits End with IDictionary<T,T> and ModelBinders, ASP.NET MVC 2.0

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.