memberlogin
contactus
randomfacts

Learn how to upload files to your web server with php

I was working on a website today and the page that I was working on had about 100 checkboxes on it.  My mission today was to create a check all boxes - checkbox - that when clicked would check all of the checkboxes on the page.  If I only selected a couple of checkboxes the form would submit without any problems.  After checking all of the checkboxes the submit button stopped working and the form wouldn't submit.  After alot of digging I finally became aware of the fact that I was using the get method for the form and changed it to post.  That resolved the issue immediately, after the fact it makes perfect sense that the get method would have a limit to the number of form fields that you could pass.

So if you have a form that should be working, but when you added alot of fields of checked alot of checkboxes - the form stopped working.  Check and see if it is using the get method and if it is - change it to post.