Home >Backend Development >PHP Tutorial >【phpStudy】 phpfind 提交表单后获取数据丢失问题。

【phpStudy】 phpfind 提交表单后获取数据丢失问题。

WBOY
WBOYOriginal
2016-06-23 14:01:461204browse

本帖最后由 acai2046 于 2014-02-21 08:55:55 编辑

phpStudy

<?phpprint_r($_POST['checked'])?><form action="" method="post"><?phpfor ($i=1;$i<1000;$i++){print_r('<input type="checkbox" name="checked[]" value="'.$i.'" checked="checked"/>');print_r('<input type="hidden" name="checked2[]" value="'.$i.'" checked="checked"/>');}?><input type="submit" value="提交"/></form>

在我本机 print_r($_POST['checked']) 打印显示500个数组。(win7配置的nginx)
在服务器上测试 显示 1000条 (测试地址 http://www.sijunzijiu.com/test.php)

代码下载  http://pan.baidu.com/s/1gVISu
------------------------
我是【phpStudy】爱好者
从phpStudy2010 到 phpfind 都很上手。
界面简单明了。

回复讨论(解决方案)

web-飞翔-福建(842062626)  9:08:42
nginx1没搭好
也查看了 配置文件 下边两个值都挺大的
nginx.conf
client_max_body_size 100m
php.ini
post_max_size = 20m

检查 php.ini 中 max_input_vars 的值

自 php 5.3.9 起,增加了 max_input_vars 变量,默认值是 1000
用于限定表单元素的个数

检查 php.ini 中 max_input_vars 的值

自 php 5.3.9 起,增加了 max_input_vars 变量,默认值是 1000
用于限定表单元素的个数

多谢 问题解决。

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn