Welcome Guest, Not a member yet? Register   Sign In
Multiple save :(
#1

(This post was last modified: 01-26-2015, 07:35 PM by bobykurniawan.)

Goodday, please check my script first. I'll explain later.

PHP Code:
function detailsave($idshipping NULL)
        {
            
$table 'sidetail';
            
$data = array();            
            foreach(
$_POST['gname'] as $symb => $key)
                {
                    
$data = array('idshipping' => $idshipping,
                                 
 'goodname' => $_POST['gname'][$symb],
                                 
 'nettweight' => $_POST['gnweight'][$symb],
                                 
 'grossweight' => $_POST['ggweight'][$symb],
                                 
 'qty' => $_POST['gqty'][$symb]
                                 
 );
                }
                    
$this->db->insert_batch($table,$data);
    } 
I've been surfing in internet to search about how to fix error in my script. And i found tutorial about insert_batch. Well, i try with that method but still fail.  bunch of warnings appeared when i try the code above
Reply


Messages In This Thread
Multiple save :( - by bobykurniawan - 01-26-2015, 07:15 PM
RE: Multiple save :( - by Rufnex - 01-27-2015, 01:44 AM
RE: Multiple save :( - by sv3tli0 - 01-27-2015, 01:58 AM



Theme © iAndrew 2016 - Forum software by © MyBB