Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i have form in which five fields are displaying in one row.. two of them are select boxes and the remaining are simple input boxes .. i put this row in a for loop which is less then five so now my form has five rows each contain two dropdown and three textboxes .. i want to take their values into the controller.. how am i gonna do that ..? as i am new in code igniter so dont know how to i take their parameters in an controller as an array ... here is my code ..the code is not working..it is storing 0 for price and quantity and in a database

           <?php for ($i = 0; $i < 5; $i++) {

?>
    <tr>
    <td><?php echo form_dropdown('cat_id[]', $records2, 
         '#',   "id='category_".$i."' onchange='getItems(this.value,".$i.")' ");?>
        </td>

         <!-- Items --> 
           <td>&nbsp; <?php echo form_dropdown('item_id[]',
       $records3, '#',  "id='items_".$i."'"); ?></td>
                        <!-- end of Items -->


  <td><input type="text" name = "price_<?php echo $i ?>"
              id = "price_"<?php echo $i ?>>

     <td><input type="text" name = "quantity_<?php echo $i ?>"
              id = "quantity_"<?php echo $i ?>>

     <td><input type="text" name = "total_<?php echo $i ?>"
              id = "total_"<?php echo $i ?>>
                    </td>
            </tr>
   <?php }?> 

i am doing this in Controller

    for ($i = 0; $i < 5; $i++) {


    $data3 = array(


            'item_id' => $this->input->post('item_id'),
                            'price' => $this->input->post('price_'.$i),
                'quantity' => $this->input->post('quantity_'$i),
            // etc



    ); 
    }
            $this->load->model('salesModel');
    $this->salesModel->addSoldItemtoDB($data3);
share|improve this question
update db on each pass of for loop, otherwise you are only updating last item – charlietfl Jan 20 at 15:34
@charlietfl how am i gonaa do that ... do i put these two lines $this->load->model('salesModel'); $this->salesModel->addSoldItemtoDB($data3); into for loop – mynameisjohn Jan 20 at 15:37
should be able to load model, then loop data – charlietfl Jan 20 at 15:39
i didnt get you ..can you edit my question so i can understand clearly – mynameisjohn Jan 20 at 15:43
load model, then run for and update db within for...not complicated – charlietfl Jan 20 at 15:45
show 5 more comments

1 Answer

$this->load->model('salesModel');    
for ($i = 0; $i < 5; $i++) {


    $data3 = array(


        'item_id' => $this->input->post('item_id'),
                        'price' => $this->input->post('price_'.$i),
            'quantity' => $this->input->post('quantity_'$i),
        // etc



); 
$this->salesModel->addSoldItemtoDB($data3);
}

This what your code should be, first you load the model, then in each iteration you insert data3 into the database. The way you were doing only the last one was inserted into the database

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.