Cloudlog/application/controllers/qso.php

11 行
253 B
PHP

2011-04-25 23:24:01 +08:00
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
class QSO extends CI_Controller {
public function index()
{
$this->load->view('layout/header');
$this->load->view('qso/index');
$this->load->view('layout/footer');
}
}