%PDF- <> %âãÏÓ endobj 2 0 obj <> endobj 3 0 obj <>/ExtGState<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/Annots[ 28 0 R 29 0 R] /MediaBox[ 0 0 595.5 842.25] /Contents 4 0 R/Group<>/Tabs/S>> endobj ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<> endobj 2 0 obj<>endobj 2 0 obj<>es 3 0 R>> endobj 2 0 obj<> ox[ 0.000000 0.000000 609.600000 935.600000]/Fi endobj 3 0 obj<> endobj 7 1 obj<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Subtype/Form>> stream
<?php defined('BASEPATH') OR exit('No direct script access allowed'); class CourcesOffered extends MY_Controller { private $num_rows = 20; public function __construct() { parent::__construct(); } public function index($page = 0) { $data = array(); $head = array(); $arrSeo = $this->Public_model->getSeo('courcesoffered'); $head['title'] = @$arrSeo['title']; $head['description'] = @$arrSeo['description']; $head['keywords'] = str_replace(" ", ",", $head['title']); // Get Cources We Offered $data['courseOffered'] = $this->Public_model->getCourseOffered(); $this->render('courcesoffered',$head, $data); } /** * This function is used to show popup of user to add and update * @return Void */ public function get_modal() { if($this->input->post('id')){ $courseOfferedArray = $this->Public_model->getCourseOffered(NULL, 'id', $this->input->post('id')); $data['courseOffered'] = $courseOfferedArray[0]; echo $this->load->view('templates/redlabel/_parts/getCoursesDetails.php', $data, true); exit; } } /* * Function : applyForCourse */ public function applyForCourse() { if($_POST){ $post = $_POST; echo $response = $this->Public_model->applyForNewCourse($post); exit; } } }