Welcome Guest, Not a member yet? Register   Sign In
Mysql insert not working properly
#16

[eluser]vitoco[/eluser]
So you need to convert two arrays with ids into one with this format :
Code:
$data = array(
  array(
    'product_column' => $product2,
    'cat_id_column'  => $cat_id2
  ),
  array(
    'product_column' => $product,
    'cat_id_column'  => $cat_id
  ),
  array(
    'product_column' => $product3,
    'cat_id_column'  => $cat_id3
  )
);

I think this may help ( only if the indexes are coincident between the two arrays )

Code:
$data = array();

foreach( $product as $index => $value )
{
    $data[] = array(
        'prduct_id'    => $value ,
        'category_id'  => $cat_id[ $index ]
    );
}

$this->db->insert_batch('table_name', $data);

Slds


Messages In This Thread
Mysql insert not working properly - by El Forum - 08-08-2012, 11:46 AM
Mysql insert not working properly - by El Forum - 08-08-2012, 12:24 PM
Mysql insert not working properly - by El Forum - 08-09-2012, 05:10 AM
Mysql insert not working properly - by El Forum - 08-09-2012, 06:27 AM
Mysql insert not working properly - by El Forum - 08-09-2012, 07:18 AM
Mysql insert not working properly - by El Forum - 08-09-2012, 08:24 AM
Mysql insert not working properly - by El Forum - 08-09-2012, 08:45 AM
Mysql insert not working properly - by El Forum - 08-09-2012, 08:48 AM
Mysql insert not working properly - by El Forum - 08-09-2012, 08:52 AM
Mysql insert not working properly - by El Forum - 08-09-2012, 08:54 AM
Mysql insert not working properly - by El Forum - 08-09-2012, 09:14 AM
Mysql insert not working properly - by El Forum - 08-09-2012, 09:22 AM
Mysql insert not working properly - by El Forum - 08-09-2012, 09:23 AM
Mysql insert not working properly - by El Forum - 08-09-2012, 09:26 AM
Mysql insert not working properly - by El Forum - 08-09-2012, 09:30 AM
Mysql insert not working properly - by El Forum - 08-09-2012, 09:31 AM
Mysql insert not working properly - by El Forum - 08-09-2012, 09:37 AM



Theme © iAndrew 2016 - Forum software by © MyBB