Welcome Guest, Not a member yet? Register   Sign In
Simple View Controller for beginners.
#3

(This post was last modified: 03-05-2015, 04:20 AM by Vimal. Edit Reason: or you can set default controller to index in )

PHP Code:
class Index extends CI_Controller{
    public function 
__construct()
    {
        
parent::__construct();
    }
    
    public function 
index()
    {
        
$this->load->view('index');
    }



Go to Yoursite.com/index.php/index

Smile

or you can set default controller in application/config/route.php
Reply


Messages In This Thread
RE: Simple View Controller for beginners. - by Vimal - 03-05-2015, 04:19 AM



Theme © iAndrew 2016 - Forum software by © MyBB