Welcome Guest, Not a member yet? Register   Sign In
how to insert data from shopping cart into db ?
#1

[eluser]Keloo[/eluser]
Hi,
I'm working on an online store with codeigniter.
The problem is that I've added the data into the cart using the cart lib provided by CI, but I really don't know how to process that data, how to insert it into the db.
I would really appreciate your help, on this one.
#2

[eluser]ELRafael[/eluser]
Code:
foreach ( $this->cart->contents() as $cart )
{
  $insert['name'] = $cart['name'];
  $insert['qty'] = $cart['qty'];
  $insert['price'] = $cart['price'];
  $this->db->insert('table', $insert);
}

$this->cart->contents() will be your friend for that task




Theme © iAndrew 2016 - Forum software by © MyBB