|
为什么我这样输出视图,在视图间会有间距
<?php
class Blog extends CI_Controller {
function __construct()
{
parent::__construct();
}
function index()
{
$this->load->helper('url');
$this->load->view('header');
$this->load->view('huiyuanfc');
$this->load->view('footer');
}
}
?>
新手上路,高手指点下!!
|
|