Codeigniter Cart Class - additional price for product options
问题 Is it possible to add price values to product options in the Codeigniter Cart Class. For example: T-shirt price is $10.00, but the XXL size is an extra $2.00. $data = array( 'id' => 'abc', 'qty' => 1, 'price' => 10.00, 'name' => 'T-Shirt', 'options' => array('Size' => 'XXL') // Where would you add $2.00 for XXL? ); $this->cart->insert($data); 回答1: That's one of the reasons why we built our own cart and order management system apart from CI's original one. The better way imho is to extend or