Cloudlog/application/controllers/search.php
2011-07-22 01:08:47 +01:00

11 行
无行尾
258 B
PHP

<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
class Search extends CI_Controller {
public function index()
{
$this->load->view('layout/header');
$this->load->view('search/main');
$this->load->view('layout/footer');
}
}