我正在使用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>");
}
答案 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.
}