How to Insert data to database in code Igniter
function add($input)
{
$student_data = array(
‘name’ => $input['name'],
‘roll’ => $input['roll']
);
$test = $this->db->insert(‘students’, $student_data);
// Produces: INSERT INTO student (name, roll) VALUES (‘name’, ‘roll’)
No trackbacks yet.