データが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ループを使用すると、フォームを送信してすべてのデータを引き継ぐことができますか?
可能な限り有益ですので、ありがとうございます!
は 'あなたは私がこれをしなかっただけミスを犯したので、私がされて、それは非常に基本的なものであったが、感じていた –