我的旧 phpbb 论坛有问题。在我将服务器从旧的 php4 更改为新的 php5 之前,它一直运行良好。我无法检索整个帖子数组。这很奇怪。
我使用 firebug 来查看浏览器正在发送什么,并使用 print_r 显示它。
这是我要发送的内容:
addcategory[0] Create new category
mode new
name[0] test
name[1000]
name[1001]
name[1002]
and so on
这是我使用 print_r($_POST) 在 php 中收到的内容:
Array ( [name] => Array ( [1000] => [1001] => [10002] ...)
简而言之,name[0] 和 mode 根本没有通过。