ok

Mini Shell

Direktori : /home2/selectio/public_html/gangabuvana/admin/cms/application/models/admin/
Upload File :
Current File : /home2/selectio/public_html/gangabuvana/admin/cms/application/models/admin/Model_event.php

<?php
defined('BASEPATH') OR exit('No direct script access allowed');

class Model_event extends CI_Model 
{

	function get_auto_increment_id()
    {
        $sql = "SHOW TABLE STATUS LIKE 'tbl_event'";
        $query = $this->db->query($sql);
        return $query->result_array();
    }

    function show() {
        $sql = "SELECT * 
                FROM tbl_event t1
                JOIN tbl_lang t2
                ON t1.lang_id = t2.lang_id
                ORDER BY t1.event_id DESC";
        $query = $this->db->query($sql);
        return $query->result_array();
    }


    function add($data) {
        $this->db->insert('tbl_event',$data);
        return $this->db->insert_id();
    }

    function update($id,$data) {
        $this->db->where('event_id',$id);
        $this->db->update('tbl_event',$data);
    }

    function delete($id)
    {
        $this->db->where('event_id',$id);
        $this->db->delete('tbl_event');
    }

    function getData($id)
    {
        $sql = 'SELECT * FROM tbl_event WHERE event_id=?';
        $query = $this->db->query($sql,array($id));
        return $query->first_row('array');
    }

    function event_check($id)
    {
        $sql = 'SELECT * FROM tbl_event WHERE event_id=?';
        $query = $this->db->query($sql,array($id));
        return $query->first_row('array');
    }
   
}

Zerion Mini Shell 1.0