我有一個需要10個相似行數據的表單。該表格收集產品代碼,說明和數量。我遍歷10行並使用數組收集信息。陣列不攜帶數據轉發
$code = array();
$description = array();
$quantity = array();
<?php
for($i=0; $i<10; $i++){
?>
<div class="quote-row">
<div class="quote-id">
<?php echo $i+1; ?>
</div>
<div class="quote-code">
<input type="text" class="quotecode" name="<?php echo $code[$i]; ?>" />
</div>
<div class="quote-description">
<input type="text" class="quotedescription" name="<?php echo $description[$i]; ?>" />
</div>
<div class="quote-quantity">
<input type="text" class="quotequantity" name="<?php echo $quantity[$i]; ?>" />
</div>
</div>
<?php
}
?>
在接下來的頁面,然後我用$_POST['code'], $_POST['description'], $_POST['quantity']
發揚的數據,並嘗試使用它。
我的問題是數據似乎沒有到達?
使用for循環,我仍然可以提交表單並將所有數據轉發嗎?
希望這是儘可能豐富,謝謝!
'var_dump'你的$ _POST數組,看看有什麼要發送 – 2012-03-20 13:00:24