この配列を使用して入力クエリを作成するにはどうすればよいですか? または、どのようにテーブルに渡すことができますか? 私のテーブルレイアウトのサンプルはこれです:
販売テーブル
id | product_name | price | qty | subtotal
これは var_dump() 関数から派生しています。
これが配列内の私のコードです
//array code from unserialized function
$products = unserialize($this->session->userdata('product_list'));
//This is the output.
Array
(
[2] => Array
(
[id] => 2
[product_name] => NOKIA 5110
[product_desc] => Cellphone
[product_price] => 500.00
[product_qty] => 1
[product_amount] => 500
[product_code] => NOKI2012-84353
)
[3] => Array
(
[id] => 3
[product_name] => HP IPAQ RW6828
[product_desc] => Cellphone
[product_price] => 1500.00
[product_qty] => 1
[product_amount] => 1500
[product_code] => HP I2012-08386
)
)