mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-07-16 22:42:16 +00:00
26 lines
330 B
PHP
26 lines
330 B
PHP
<?php
|
|
|
|
if (! defined('BASEPATH')) exit('No direct script access allowed');
|
|
|
|
class Lib
|
|
{
|
|
private $_ci; // Code igniter instance
|
|
|
|
/**
|
|
* Object initialization
|
|
*/
|
|
public function __construct()
|
|
{
|
|
$this->_ci =& get_instance();
|
|
|
|
$this->_ci->load->model('', '');
|
|
}
|
|
|
|
public function getStudents()
|
|
{
|
|
$qry = '
|
|
|
|
';
|
|
}
|
|
}
|