new limit within php: 1000 fields per POST. Does someone know, if the number can be influenced?

后端 未结 9 2072
北荒
北荒 2020-11-27 04:53

In newer PHP-Versions the count of input-fileds per formula (POST) will be limited to 1000 (unverified information). It seams that this limit is already installed in certain

9条回答
  •  心在旅途
    2020-11-27 05:06

    If you cannot/ do not want to increase the server limit, here is another solution

    
    
    ....
    
    

    then using jquery

    
    

    Using POST I tested posting 10000 records.

    In the server

    $cboxes = $_POST['cboxes'];
    $cbox_exp =(explode(',', $cboxes));
    print_r(count($cbox_exp)); //gives me 10000
    

提交回复
热议问题