1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<?php require_once APPPATH . 'core/MY_Controller_2.php';
class Judge extends MY_Controller_2 { public function __construct() { parent::__construct();
if(check_judge_login()){ redirect(front_url('score')); } }
public function login(){ $this->load->view('judge_login'); } }
|