File: //home/cafsindia/lms_cafsinfotech_in/application/models/ImportModel.php
<?php defined('BASEPATH') OR exit('No direct script access allowed');
class ImportModel extends CI_Model
{
function insert_question($data)
{
$this->db->insert('questions', $data);
return $this->db->insert_id();
}
function insert_bulk_question($data)
{
return $this->db->insert_batch('questions', $data);
}
function get_all_quiz() {
return $this->db->where('deleted',0)->order_by('title','asc')->get('quizes')->result();
}
function delete_question_by_quiz_id($quiz_id)
{
$this->db->where('quiz_id',$quiz_id);
$this->db->delete('questions');
return $this->db->affected_rows();
}
}