6515996f87
Role, Employee, Department, Degree, Semester, Subject, Faculty Edit Completed
186 lines
4.6 KiB
PHP
186 lines
4.6 KiB
PHP
<?php
|
|
defined('BASEPATH') OR exit('No direct script access allowed');
|
|
|
|
class Student extends CI_Controller {
|
|
|
|
public function __construct()
|
|
{
|
|
parent::__construct();
|
|
$this->load->model('Student_model');
|
|
$this->load->model('Commonsql_model');
|
|
|
|
}
|
|
|
|
/**
|
|
* Index Page for this controller.
|
|
*
|
|
* Maps to the following URL
|
|
* http://example.com/index.php/welcome
|
|
* - or -
|
|
* http://example.com/index.php/welcome/index
|
|
* - or -
|
|
* Since this controller is set as the default controller in
|
|
* config/routes.php, it's displayed at http://example.com/
|
|
*
|
|
* So any other public methods not prefixed with an underscore will
|
|
* map to /index.php/welcome/<method_name>
|
|
* @see https://codeigniter.com/user_guide/general/urls.html
|
|
*/
|
|
public function Student_list()
|
|
{
|
|
$data['stu']=$this->Student_model->list_stu();
|
|
$this->load->view('student/student_list',$data);
|
|
}
|
|
|
|
public function viewStudent($id)
|
|
{
|
|
if($this->session->userdata('id')==""){redirect('');}
|
|
|
|
$data['viewStudent']=$this->Student_model->viewStudent($id);
|
|
//echo $this->db->last_query();exit;
|
|
$this->load->view('student/view_student',$data);
|
|
}
|
|
function add_student()
|
|
{
|
|
$data['dep']=$this->Student_model->get_dep();
|
|
$this->load->view('student/add_student',$data);
|
|
|
|
|
|
if($this->input->post('submit'))
|
|
{
|
|
$name=$this->input->post('name');
|
|
$email=$this->input->post('email');
|
|
$number=$this->input->post('mobileNumber');
|
|
$address=$this->input->post('address');
|
|
$department=$this->input->post('department');
|
|
$student=$this->input->post('student');
|
|
$gender=$this->input->post('gender');
|
|
$s_img=$this->input->post('image');
|
|
$date=$this->input->post('date');
|
|
//$dob= implode("-", array_reverse(explode("-", $date)));
|
|
if (!is_dir('uploads/student')) {
|
|
mkdir('./uploads/student', 0777, TRUE);
|
|
|
|
}
|
|
if(file_exists($_FILES['image']['tmp_name']))
|
|
{
|
|
$temp_user_img=$_FILES['image']['tmp_name'];
|
|
$s_img=str_replace(' ', '_', $_FILES["image"]["name"]);
|
|
$allowed = array('png,jpeg,jpg');
|
|
$extension1 = pathinfo($s_img, PATHINFO_EXTENSION);
|
|
$s_img=date('ymdhi').'.'.$extension1;
|
|
$targetPath='./uploads/student/';
|
|
$targetFile=$targetPath.$s_img;
|
|
move_uploaded_file($temp_user_img, $targetFile);
|
|
}
|
|
|
|
|
|
$table="student";
|
|
$values=array('name'=>$name,
|
|
'mobileNumber'=>$number,
|
|
'email'=>$email,
|
|
'address'=>$address,
|
|
'department'=>$department,
|
|
'studentId'=>$student,
|
|
'gender'=>$gender,
|
|
'image'=>$s_img,
|
|
'dob'=>$date,
|
|
'createdOn'=>date('Y-m-d'),
|
|
'createdBy'=>1,
|
|
'status'=>1);
|
|
$result=$this->Commonsql_model->insert_table($table,$values);
|
|
if($result)
|
|
{
|
|
$this->session->set_userdata('suc','successfully added');
|
|
redirect('student');
|
|
|
|
}
|
|
else
|
|
{
|
|
$this->session->set_userdata('err','Please try again');
|
|
redirect('student');
|
|
}
|
|
|
|
}
|
|
}
|
|
|
|
|
|
function edit_student($id)
|
|
{
|
|
|
|
$data['stu']=$this->Student_model->get_stu($id);
|
|
$this->load->view('student/edit_student',$data);
|
|
|
|
if($this->input->post('submit'))
|
|
{
|
|
$name=$this->input->post('name');
|
|
$number=$this->input->post('mobileNumber');
|
|
$address=$this->input->post('address');
|
|
$department=$this->input->post('department');
|
|
$student=$this->input->post('student');
|
|
$gender=$this->input->post('gender');
|
|
$s_img=$this->input->post('image');
|
|
|
|
|
|
$table="student";
|
|
$where=array("id"=>$id);
|
|
$values=array('name'=>$name,
|
|
'mobileNumber'=>$number,
|
|
'studentId'=>$student,
|
|
'address'=>$address,
|
|
'department'=>$department,
|
|
'gender'=>$gender,
|
|
'image'=>$s_img,
|
|
//'update_on'=>date('Y-m-d'),
|
|
// 'update_by'=>1,
|
|
'status'=>1);
|
|
|
|
$result=$this->Commonsql_model->updateTable($table,$where,$values);
|
|
if($result)
|
|
{
|
|
$this->session->set_userdata('suc','successfully Updated');
|
|
redirect('student');
|
|
|
|
}
|
|
else
|
|
{
|
|
$this->session->set_userdata('err','Please try again');
|
|
redirect('student');
|
|
}
|
|
|
|
}
|
|
//echo "sdsd";exit;
|
|
|
|
//echo $this->db->last_query();exit;
|
|
|
|
}
|
|
|
|
function deleteStudent()
|
|
{
|
|
if($this->input->post('submit'))
|
|
{
|
|
$studentId=$this->input->post('studentId');
|
|
|
|
$table="student";
|
|
$where=array("id"=>$studentId);
|
|
$values=array('status'=>0);
|
|
|
|
$result=$this->Commonsql_model->updateTable($table,$where,$values);
|
|
if($result)
|
|
{
|
|
$this->session->set_userdata('suc','successfully deleted');
|
|
redirect('student');
|
|
|
|
}
|
|
else
|
|
{
|
|
$this->session->set_userdata('err','Please try again');
|
|
redirect('student');
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
}
|