Print_r无法在php中运行

时间:2017-02-27 15:22:40

标签: php html arrays forms

我正在尝试使用php中的隐藏元素传递表单中的数组。我首先创建数组,然后是foreach,它遍历循环中的每个元素,然后我回显一个html类型,其类型为hidden,将在我的表单中。最后我想用print_r

打印出隐藏的表单元素

这是我的代码

<?php

$postvalue=array("a","b","c","e", "f", "g");
foreach($postvalue as $key => $value)
{
  echo '<input type="hidden" name="result[]" value="'. $value. '">';
}



print_r($_POST['result']);

<?

当我运行此代码时,我从print_r

中收到以下错误
  

注意:未定义索引:结果

我该如何解决这个问题?

0 个答案:

没有答案