Correct.  And although I haven't tried this on PHP servers, on a .NET server, 
the following form data passed:

cb=1&cb=2&cb=3

Would be interpred on the server side:

Request.Form["cb"] == "1,2,3";


In PHP you'd need to name the inputs "cb[]" to achieve the same.

Reply via email to