php - Codeigniter Update Options not working -


i want update codeigniter row options it's not working. code.

$result = $this->cart->update(array(     'rowid' => $rowid,     'qty' => $quantity,     'options' => array('size'=>$comments) ));  var_dump($result); 

in $comments, have actual data want reason, options not there when pre contents of cart. idea may have done wrong?


Comments

Popular posts from this blog

python - Alternative to referencing variable before assignment -

vb.net - How to ignore if a cell is empty nothing -

Sort a complex associative array in PHP -