Php post方法未过帐html表单中的所有数据

Php post方法未过帐html表单中的所有数据,php,Php,我的html表单中有以下元素 <input type="text" name="date[]" value="25-05-2015"/> 上述元素在表单中出现169次 当我提交表单时,仅日期[]最多可发布124个值 这个post限制有什么问题吗?我看到这是日期数组元素。使用: <form name="form_name" method="post" action=""> <input type="text" name="date[0]" value="25-0

我的html表单中有以下元素

<input type="text" name="date[]" value="25-05-2015"/>

上述元素在表单中出现169次

当我提交表单时,仅日期[]最多可发布124个值


这个post限制有什么问题吗?

我看到这是日期数组元素。使用:

<form name="form_name" method="post" action=""> <input type="text" name="date[0]" value="25-05-2015"/> . . . 169 times <input type="submit" name="submit"/> </form>
。169次

。169次

您的php文件中有
?检查php.ini文件中的
post_max_size
是否可能
max_input_vars
?错误日志和/或登录错误中有任何内容吗?这是我的表单。用php打印169次($_POST['date']);php.ini中最多124次post_max_size=80M共享表单完整代码。
<form name="form_name" method="post" action=""> <input type="text" name="date" value="25-05-2015"/> . . . 169 times <input type="submit" name="submit"/> </form>