0
在我的購物車中。有些產品有兩種選項可供選擇。即顏色和大小。如何保存到數據庫?codeigniter:如何在數據庫中存儲產品選擇
我的控制器:
foreach ($this->cart->contents() as $item)
{
if(empty($items['before']))
{
$harga_fix_diskon_atau_non_diskon = $this->cart->format_number($item['price']);
}
else
{
$harga_fix_diskon_atau_non_diskon = $this->cart->format_number($item['before']);
}
foreach ($this->cart->product_options($item['rowid']) as $option_name => $option_value)
{
if(empty($option_value))
{
$option_value = "";
}
else
{
$option_value;
}
$option = $option_value;
}
$data_order[] = array(
'invoice' => $invoice,
'name_product' => $item['name'],
'size' => $item['option'],
'color' => $item['option'],
'qty' => $item['qty'],
'price' => $harga_fix_diskon_atau_non_diskon,
'weight' => $item['berat'],
);
}
$this->db->insert_batch('order_product', $data_order);
我已保存,除了在產品選擇部分
我的數據庫過程的結果的所有數據是大小和顏色的問題:
----------------------------------------------------------------
| invoice | name_product | size | color | qty | price | weight |
----------------------------------------------------------------
| ST5623 | Nike | 42 | 42 | 2 | 28 | 0,5 |
*應該在顏色欄中包含顏色。
如果我使用print_r();並設法向我展示我想要的東西。即顏色爲顏色,尺寸爲尺寸
foreach ($this->cart->product_options($item['rowid']) as $option_name => $option_value)
{
if(empty($option_value))
{
$option_value = "";
}
else
{
$option_value;
}
$option = $option_value;
print_r($option);
}
請大家幫忙。謝謝。
您需要更新基礎上選擇的顏色和大小列是不是$項目的設置相同的值? – JYoThI
是先生........ –
只需使用$ this-> db-> update() – JYoThI