1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
<?php defined('BASEPATH') OR exit('No direct script access allowed');
use Illuminate\Database\Capsule\Manager as DB;
class News extends CI_Controller {
public function __construct() { parent::__construct();
$this->load->model('News_model'); }
public function index() { echo 'new index'; }
public function detail($id = null) { echo 'new detail'; }
public function news_list() { echo 'new list'; }
}
|