Dear Sir @willvin I appreciate your help. If possible please help me about this issue . While I was using static table the following code was working perfectly to multiply two values i-e rate & quantity and result was displayed on third field invoice_rate . But after using Dynamic Table Row it is not working. Thanks & Regards...
and this one for after adding records $table_data = array( "wh_quantity" => $wh_quantity + $modeldata['qty'] ); $db->where($row = 1); $db->where("wh_item", $modeldata['product']); $db->where("category", $modeldata['category']); $db->update("whstock", $table_data);
Hi all Is it possible to run multiple queries as a result of dynamic table row. For example When I add three records using dynamic table row . A query should executed for each record (After add record) . I tried but a single query is executed for first record.