CodeIgniter / PHPCombine Of two arrays into two array November 15, 2016 Chandan SharmaComment on Combine Of two arrays into two array## Combine two array elements into one array $PRO_QTY_ARR = array_combine($product_id_arr,$product_qty_arr); foreach($PRO_QTY_ARR as $key => $value) { echo $key; echo $value; }Share this:FacebookX