33 lines
851 B
PHP
Executable File
33 lines
851 B
PHP
Executable File
<?php
|
|
|
|
if (!defined('BASEPATH'))
|
|
exit('No direct script access allowed');
|
|
|
|
class Initial_assesment extends MX_Controller {
|
|
|
|
function __construct() {
|
|
parent::__construct();
|
|
$this->load->model('Initial_assesment_model');
|
|
}
|
|
|
|
public function index() {
|
|
// echo '<pre>'; print_r($data); echo '</pre>';die;
|
|
// echo 'test';die;
|
|
$this->load->view('home/dashboard'); // just the header file
|
|
$this->load->view('add_new');
|
|
$this->load->view('home/footer'); // just the header file
|
|
}
|
|
|
|
public function addNewView() {
|
|
$this->load->view('home/dashboard'); // just the header file
|
|
$this->load->view('add_new');
|
|
$this->load->view('home/footer'); // just the header file
|
|
//echo '<pre>'; print_r($data); echo '</pre>';die;
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|