在我的朋友服务器上测试我的 php 代码时,我遇到了问题。(它在我的本地服务器上运行良好)。
有一个包含checkbox
输入的表单,例如
提交表格时:
- 在我的服务器中: print_r($_POST) 打印:
Array ( [names] => Array ( [0] => john [1] => sam ) )
- 在他的服务器中: print_r($_POST) 打印:
Array ( [names] => Array )
并且Array
是字符串而不是数组!
他的php版本是5.2.17
<form method="post">
john <input type="checkbox" name="names[]" value="john"/>
sam <input type="checkbox" name="names[]" value="sam"/>
moh <input type="checkbox" name="names[]" value="moh"/>
<input type="submit"/>
</form>
<?php
print_r($_POST);
?>