0

我正在getattributes.php使用ajax并从该文件中调用一个文件,我正在附加一个包含一些复选框的表。它已成功附加,但问题是当我提交表单时,我没有获得动态添加的那些字段的值。我也知道stackoverflow中有类似的问题,但我仍然有问题。

getattributes.php :-

    <tr><th><?php echo($exquery['specification_name']);?></th>

    <?php $getattribute = "SELECT * FROM attributes WHERE specification_id = '".$specifi_id[$i]."'  ";
    $executeattribute = mysql_query($getattribute);

    while($attibutes = mysql_fetch_assoc($executeattribute))
    {
        $attributecount = $attributecount + 1;
    ?>

        <td><input type='checkbox' value='<?php echo($attibutes['attribute_id']);?>' name='attribute_id<?php echo($i);?>[]'>&nbsp;<?php echo($attibutes['attribute_name']);?></td>
        <input type='hidden' name = 'attribute_id<?php echo($i);?>[]' value='<?php echo($attibutes['attribute_id']);?>' id='spec<?php echo $i;?>attr<?php echo $attributecount?>'/>
    <?php }?>

    </tr>
    <?php
        $attributecount = 0;
    ?>
    <!--<input type='hidden' name = 'test' value='<?php echo $attributecount;?>' id='spec<?php echo $i;?>'/>-->

<?php }

我还添加了快照,表明它已成功附加到我的表单上:-

在此处输入图像描述

这里规格表是动态添加的,我想获取品牌和颜色复选框的值。我不知道是什么问题。

编辑:-发布方法代码

<form method="POST" action="" enctype="multipart/form-data" class="myform">
  // some field //


</form>

我正在检查 post 值print_r($_POST),我得到了表单的所有值,但没有得到动态添加的字段值

提前致谢

4

1 回答 1

0

print_r($_POST)如果在提交表单时选中了该特定复选框,则只会显示一个复选框值

要检查是否已选中复选框,请使用以下命令:

if( isset($_POST["Name-Of-Checkbox"]) ) {
    $checkboxIsChecked = true;
}
于 2012-10-09T07:13:46.950 回答