File: /storage/v6964/avoxlive/public_html/application/models/Appointment_list_model.php
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
class Appointment_list_model extends CI_Model {
function __construct()
{
parent::__construct();
}
/**************************** The function below insert into bank and teacher tables **************************** */
function insertappointment_listFunction(){
$page_data = array(
'id' => $this->session->userdata('id'),
'patient_id' => $this->input->post('patient_id'),
'title' => $this->input->post('name'),
'doctor_id' => $this->input->post('doctor_id'),
//'email' => $this->input->post('email'),
//'contact' => $this->input->post('contact'),
//'gender' => $this->input->post('gender'),
//'date_o_b' => $this->input->post('date_o_b'),
//'address' => $this->input->post('address'),
'description' => $this->input->post('description'),
// 'purpose' => $this->input->post('purpose'),
'start_date' => $this->input->post('start_date'),
'end_date' => $this->input->post('end_date'),
'status' => $this->input->post('status'),
'color' => $this->input->post('color'),
'doctor_name' => $this->input->post('doctor_name'),
'patient_name' => $this->input->post('patient_name'),
);
$this->db->insert('calendar', $page_data);
}
function updateappointmentFunction($param2){
$page_data = array(
// 'id' => $this->session->userdata('id'),
// 'title' => $this->input->post('title'),
// 'patient_id' => $this->input->post('patient_id'),
// 'patient_id' => html_escape($this->input->post('patient_id')),
// 'doctor_id' => html_escape($this->input->post('doctor_id')),
// 'description' => html_escape($this->input->post('description')),
// 'start_date' => html_escape($this->input->post('start_date')),
// 'end_date' => html_escape($this->input->post('end_date')),
// 'status' => html_escape($this->input->post('status')),
// 'color' => html_escape($this->input->post('color')),
// 'doctor_name' => html_escape($this->input->post('doctor_name')),
// 'patient_name' => html_escape($this->input->post('patient_name')),
);
// $this->db->set('calendar', $page_data);
$this->db->where('id', $param2);
$this->db->update('calendar', $page_data);
// $this->db->insert('calendar', $page_data);
// $this->db->update();
}
// The function below delete from award table //
function deleteappointmentFunction($param2){
$this->db->where('id', $param2);
$this->db->delete('calendar');
}
// function fetch_all_event(){
// $this->db->calendar('id');
// return $this->db->get('calendar');
// }
}