2013-02-20 57 views
0

對不起,問這個老問題,我知道我已經閱讀之前,我問這裏,它可以使用數據庫添加更多的購物車沒有限制。我已經嘗試使用ci_sessions表來存儲會話,但仍然沒有運氣,我只能最多添加6個項目。商店會議購物車到數據庫

請幫幫我,我尋找一些例如這個幾乎兩天,結果是什麼

EDITED 這是我的看法

<table id="box-table-a" summary="Employee Pay Sheet"> 
     <thead> 
      <tr> 
       <th scope="col">Description</th> 
       <th scope="col">Price</th> 
       <th class="centered" scope="col">Options</th> 
      </tr> 
     </thead> 
     <tbody> 
      <?php foreach ($foto_produk->result() as $key => $value) {?> 
      <tr> 
       <td><?php echo $value->description;?></td> 
       <td><?php echo $value->price;?></td> 
       <td class="centered"><input type="checkbox" name="produk_foto[]" value="<?php echo $value->id;?>" /></td> 
      </tr> 
      <?php }?> 
     </tbody> 
    </table> 

這裏是我的控制器代碼

if($this->input->post('produk_foto')){ 
     $id_foto = $this->input->post('produk_foto'); 
     foreach ($id_foto as $key => $value) { 

      $this->db->where('id', $value); 
      $query = $this->db->get('foto_product'); 
      if($query->num_rows() > 0){ 
       foreach($query->result() as $ids => $rows){    
        echo $rows->id.'<br />'; 
        $data_produk = array(
         'user_data'=> array(
          'id' => $rows->id, 
          'price' => $rows->price, 
          'name' => $rows->description, 
          'qty' => $rows->aantal 
         ) 
        ); 

        $this->cart->insert($data_produk); 
       }    
      } 
     } 
    } 

和這個我的觀點代碼

<?php if(!$this->cart->contents()):?> 
    <div class="alert-box warning">The regular products are empty.</div> 
    <div class="clearfix"></div> 
    <?php else:?> 
    <hr> 
    <h4>REGULAR PRODUCTS</h4> 
    <div class="order_detail" id="Display"> 
     <table> 
      <thead> 
       <tr> 
        <th>DESCRIPTION</th> 
        <th>QUANTITY</th> 
        <th>PRICE PER ITEM(S)</th> 
        <th>TOTAL</th> 
        <th>REMOVE</th> 
       </tr> 
      </thead> 
      <tbody> 
       <?php foreach($this->cart->contents() as $rows):?> 
       <tr> 
        <td style="font-weight:bold;"><?php echo $rows['name'];?></td> 
        <td> 
         <?php echo form_open(current_url());?> 
         <input type="text" size="3" name="quantity" value="<?php echo $rows['qty'];?>" /> 
         <input type="hidden" size="3" name="rowid" value="<?php echo $rows['rowid'];?>" /> 
         <input type="submit" name="update" value="Update" /> 
         <?php echo form_close();?> 
        </td> 
        <td><?php echo $rows['price'];?></td> 
        <td><?php echo $this->cart->format_number($rows['subtotal']);?></td> 
        <td><a href="<?php echo base_url('index.php/en/payment/delete_item_product/'.$rows['rowid'].'');?>">delete</a></td> 
       </tr> 
       <?php endforeach;?> 
      </tbody> 
      <tfoot> 
       <tr> 
        <td colspan="3">Total Products</td> 
        <td colspan="3">&euro; <?php echo $this->cart->format_number($this->cart->total());?></td> 
       </tr> 
       <tr> 
        <td colspan="3">Total Shipping</td> 
        <td colspan="3"></td> 
       </tr> 
       <tr> 
        <td colspan="3"></td> 
        <td colspan="3" style="padding:0;text-align:center;"> 
         <p>TOTAL :</p> 
         <span class="tot">&euro; <?php echo $this->cart->format_number($this->cart->total());?></span> 
        </td> 
       </tr> 
      </tfoot> 
     </table> 
    </div> 
    <?php endif;?> 

與此代碼我想使用複選框以陣列插入,和我有超過6複選框

預先感謝您

+0

你面對的錯誤是什麼,因爲你說你嘗試過...... – 2013-02-20 09:32:35

+0

@Alessandro Minoccheri我試圖插入更多的車,但我總是有6個最大項添加 – ranggadablues 2013-02-20 09:39:50

+0

@Venkat沒有錯誤,但我想要插入超過6個項目.. – ranggadablues 2013-02-20 09:40:52

回答

0

確定它是由我自己解決..

我不「知道,在產品的名稱有特殊字符..

和我的恥辱..

但是謝謝你的好意

相關問題