hassank1 Posted December 29, 2008 Share Posted December 29, 2008 Hey I was wondering can I create an array of checkboxes let's say (1000 or more checkbox) and then submit the form using $_POST ? or is there a size limitation ? Link to comment https://forums.phpfreaks.com/topic/138727-solved-is-_post-limited-like-_get/ Share on other sites More sharing options...
Mark Baker Posted December 29, 2008 Share Posted December 29, 2008 There is a size limitation: not directly to the number of elements in a form (although 1000+ checkbox options is going to be annoying to a user) but in the volume of data that PHP will accept from a POST request. This limit can be modified by changing the post_max_size value in php.ini. Default is 8MB. Link to comment https://forums.phpfreaks.com/topic/138727-solved-is-_post-limited-like-_get/#findComment-725291 Share on other sites More sharing options...
hassank1 Posted December 29, 2008 Author Share Posted December 29, 2008 Thanks Link to comment https://forums.phpfreaks.com/topic/138727-solved-is-_post-limited-like-_get/#findComment-725292 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.