在提交表单时检索动态创建的html输入文本框

时间:2014-10-10 02:45:46

标签: php html forms

我正在使用HTML动态创建php表单。 input html上的form框的名称也是动态创建的。 当我在动态创建的submit html上点击form并使用方法post将数据推送到服务器。 如何在input的操作页面上调用动态创建的form框的名称? 换句话说,当我点击input时,如果我有如下代码,如何将php框的名称传递给我的form submit

function add_textbox($label, $name) {
    myprint("<label>$label <br><br><input type=text name=$name onblur = \"anschecker(this.value)\"></label><br><br>");
}

2 个答案:

答案 0 :(得分:1)

只需使用

<?php    
    if(isset($_POST)){
       foreach($_POST as $value){
          echo $value; //here you will get the values of each field in the form
        }  
    }
 ?>

答案 1 :(得分:0)

它将与您拥有的代码一起传递。

如果要在PHP代码中找到传递给它的名称,可能需要使用类似我将在下面创建的语句。

foreach($_POST as $key => $value){
    // The key will be the name of the value passed in this loop.
}