Combine Of two arrays into two array Posted on November 15, 2016 by Chandan Sharma in array, CodeIgniter, PHP## 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:TwitterFacebook Published by Chandan Sharma View all posts by Chandan Sharma