|
![](static/image/common/ico_lz.png)
楼主 |
发表于 2008-12-30 10:13:30
|
显示全部楼层
按照你的方式都改了,页面就是大白页,什么也不显示。
我环境就是Apache/2.2.4 PHP/5.2.8 CI1.7.0
程序更简单了,就是走一下控制器,然后跳到视图。
控制器代码就这些:
<?php
/*
* Created on 2008/12/26
*
* To change the template for this generated file go to
* Window - Preferences - PHPeclipse - PHP - Code Templates
*/
class Test extends Controller {
function __construct()
{
parent::Controller();
$this->load->helper('url_helper');
$this->load->database();
$this->load->library('validation');
$this->load->helper('form');
}
function index()
{
$this->load->view('4-6-1new');
}
}
?> |
|