is there a maximum # of checkbox that a user can only select... i have a least 500 checkboxes when i all of them is check submit won't work but checking say sumthing around 200 chekboxes , submit will work? is there a limitation of html checkox that i'm not aware of... thanks...
Bear Bibeault
Author and opinionated walrus
Marshal
Is your form submission method GET or POST? (If you didn't specify it, it will be GET). On a GET, the form is submitted with the parameters in the query string of the URL which has limited space. You are probably over-running this limit when a lot of check-boxes are selected. Be sure that you have