|
发表于 2008-8-4 16:34:21
|
显示全部楼层
代码贴出来看看?
class Login extends Controller {
function Login()
{
parent::Controller();
}
function index()
{
$this->load->view('welcome_message');
}
}
?
如果不行的话,修改system/appliction/config/config.php 中
$config['base_url'] = "http://localhost/CodeIgniter_1.6.3/index.php"; |
|