0

我有一个动态表格。

用户可以根据需要创建 n 个字段。他可以在表单中创建 1,2,3,4... 数量的元素

此处编码id

<form method="post" action="">
<label>Service</label>
<select name="service">
<option value="1">Purchase</option>
<option value="2">Sale</option>
<option value="3">Rent</option>
</select>
<label>Number of fields</label><input type="text" name="no_fields"><br>
<input type="submit" name="submit">
</form>
<?php
if($_POST['no_fields']>0)
{
    ?>
    <form method="post" action="">
    <?php
    $j=$_POST['no_fields'];
    $s=$_POST['service'];
    for($i=1;$i<=$j;$i++)
    {
        ?>
        <?php echo $i.". "; ?>
        <label>Name of the field : </label><input type="text" name="name_field[]">
        <label>Type : </label>
        <select name="type[]">
        <option>text</option>
        <option>textarea</option>
        <option>button</option>
        <option>radio buton</option>
        <option>checkbox</option>
        </select>
        <br><br>
        <?php
    }
    ?>
    <input type="hidden" name="serv_id" value="<?php echo $s; ?>">
    <input type="hidden" name="loop" value="<?php echo $j; ?>">
    <input type="submit" name="save" value="save">
    </form>
    <?php
}
if(isset($_POST['save']))
{
foreach($name_field as $v)
{
echo $v;
}
}
    ?>

我想呼应表单的元素,但我无法做到这一点。请帮助我。

4

3 回答 3

0
if(isset($_POST['save'])) {
$values = array_values($_POST);
    foreach($_POST as $v) {
        print_r($v);
    }
}
于 2012-10-24T09:21:11.883 回答
0

相同的字段名称应该不是问题,因为它是数组格式。可能的解决方案是:

foreach($_POST['name_field'] as $nf) //this is for name field
echo $nf;
foreach($_POST['type'] as $te)
echo $te;
于 2012-10-24T08:56:34.710 回答
0

使用同名字段可能会产生问题。

 <label>Name of the field : </label><input type="text" name="name_field[]">
        <label>Type : </label>
        <select name="type[]">

应该

<label>Name of the field : </label><input type="text" name="name_field<?php echo $i;?>[]">
        <label>Type : </label>
        <select name="type<?php echo $i;?>[]">

使用这样的东西

foreach($_POST as $p){
echo $p;
}
于 2012-10-24T08:41:49.787 回答