16 lines
239 B
PHP
Executable File
16 lines
239 B
PHP
Executable File
<?php
|
|
|
|
if (!defined('BASEPATH'))
|
|
exit('No direct script access allowed');
|
|
|
|
class Initial_assesment_model extends CI_model {
|
|
|
|
function __construct() {
|
|
parent::__construct();
|
|
$this->load->database();
|
|
|
|
}
|
|
|
|
|
|
}
|