0

次のようなPHPスクリプトがあります。

foreach($_POST as $key => $value) {
      $value = $this->input->post($key);
      $ingredientQTY = $this->input->post('ingredientQTY');
      $measurements = $this->input->post('measurements');
      $ingredientNAME = $this->input->post('ingredientNAME');
      $ingredientsROW[] = array($ingredientQTY, $measurements, $ingredientNAME);
    
      for ($i = 0, $count = count($ingredientQTY); $i < $count; $i++) {
            $rows[] = array(
                'ingredientamount'         => $ingredientQTY[$i],
                'ingredientType' =>  $measurements[$i],
                'ingredientname'        => $ingredientNAME[$i],
                'recipe_id' => $recipe_id,
                'order' => $i + 1,
                'user_id' => $user_id
            );
            $sql = "INSERT `ingredients` (`ingredientamount`,`ingredientType`,`ingredientname`, `recipe_id`, `order`, `user_id`) VALUES ";
            $coma = '';
            foreach ($rows as $oneRow) {
                $sql .= $coma."('".implode("','",$oneRow)."')";
                $coma = ', ';
            }
            $this->db->query($sql);
      }
      break;
    }

これは、成分と呼ばれるデータベースに挿入されます。私のフォームは次のようになります。

ここに画像の説明を入力

ここに私のHTMLがあります:

<span>
  <input type="text" class='pluralizer small' name="ingredientQTY[]" placeholder='QTY'/>
  <select name='measurements[]'>
    <option value='' name='' checked='checked' data-single="--" data-other="--">--</option>
    <?foreach ($measurements as $m):?>
        <option value='<?=$m->measurement;?>' data-single="<?=$m->measurement;?>" data-other="<?=$m->measurementPlural;?>">
          </option>
    <?endforeach;?>
  </select>
  <input type="text" name="ingredientNAME[]" class="ingredient" placeholder='Ingredient'/>
  <a class='float-right delete-button deleteThis' style='margin:10px 2px;' href='#'><img src='<? echo base_url()."public/img/delete.png";?>' height='11' width='11' /></a>
</span>

何らかの理由で、挿入すると (これから説明する問題以外は正常に動作します)、挿入する最初の行が mysql テーブルに複製されますingredientsが、後続の行はすべて 1 回だけ挿入されます。なぜそれをするのですか?

助けてくれてありがとう!さらに詳細が必要な場合は、お尋ねください。

4

1 に答える 1

1

$this->db->query($sql);forループの外側に移動$rowsし、foreachループの各反復で空の配列になるようにリセットする必要があります。

これを試して:

foreach($_POST as $key => $value) {
  $value = $this->input->post($key);
  $ingredientQTY = $this->input->post('ingredientQTY');
  $measurements = $this->input->post('measurements');
  $ingredientNAME = $this->input->post('ingredientNAME');
  $ingredientsROW[] = array($ingredientQTY, $measurements, $ingredientNAME);
  $rows = array();
  for ($i = 0, $count = count($ingredientQTY); $i < $count; $i++) {
        $rows[] = array(
            'ingredientamount'         => $ingredientQTY[$i],
            'ingredientType' =>  $measurements[$i],
            'ingredientname'        => $ingredientNAME[$i],
            'recipe_id' => $recipe_id,
            'order' => $i + 1,
            'user_id' => $user_id
        );
        $sql = "INSERT `ingredients` (`ingredientamount`,`ingredientType`,`ingredientname`, `recipe_id`, `order`, `user_id`) VALUES ";
        $coma = '';
        foreach ($rows as $oneRow) {
            $sql .= $coma."('".implode("','",$oneRow)."')";
            $coma = ', ';
        }
  }
  $this->db->query($sql);
  break;
}
于 2013-03-27T21:32:24.060 に答える