Welcome Guest, Not a member yet? Register   Sign In
cannot insert data into database
#8

[eluser]ubl_coder[/eluser]
Here is my model : ( mbarang.php )

Code:
<?php

if ( ! defined('BASEPATH')) exit('No direct script access allowed');

Class Mbarang extends Model {
    
    function __construct() {
        parent::Model();    
    }
    
    function simpan() {
         $data = array(
             'kode_barang'=>$this->input->post('kd_brg'),
            'nama'=>$this->input->post('nm_brg'),
            'satuan'=>$this->input->post('satuan'),
            'harga'=>$this->input->post('harga'),
            'stok'=>$this->input->post('stok')
        );
    
        $this->db->insert('barang', $data);
    }
}
?>

Any statements are incorrect?


Messages In This Thread
cannot insert data into database - by El Forum - 03-26-2009, 08:20 AM
cannot insert data into database - by El Forum - 03-26-2009, 08:34 AM
cannot insert data into database - by El Forum - 03-26-2009, 08:42 AM
cannot insert data into database - by El Forum - 03-26-2009, 05:10 PM
cannot insert data into database - by El Forum - 03-26-2009, 06:48 PM
cannot insert data into database - by El Forum - 03-26-2009, 11:49 PM
cannot insert data into database - by El Forum - 03-27-2009, 05:16 AM
cannot insert data into database - by El Forum - 03-27-2009, 07:09 AM
cannot insert data into database - by El Forum - 03-27-2009, 07:18 AM
cannot insert data into database - by El Forum - 03-27-2009, 07:21 AM
cannot insert data into database - by El Forum - 04-06-2009, 04:10 AM
cannot insert data into database - by El Forum - 04-06-2009, 05:58 AM



Theme © iAndrew 2016 - Forum software by © MyBB