Welcome Guest, Not a member yet? Register   Sign In
I can't view the add or view blog page according to the tutorial
#3

[eluser]Pokhara[/eluser]
Thank you very much, I did as it was shown in tutorial video, I have not changed any settings other than what has said in the tutorial video. However , I can't see view and add page. Here is a Blog Controller code. Thanks

Code:
<?php

class Blog extends Controller {
    
    function Blog() {
        
        parent :: Controller();
        
        $this->load->scaffolding('entries'); //table name is entries
    }
    
    
    
    function index(){
        
        $data['title']= "My blog ";
        $data['heading']= "Howdy Guys' what's up";
        $data['todo'] = array('abd','london','pagal','sssst', 'jjjj');
        
        $this->load->view('blog_view', $data);
        
    }
}
?>


Messages In This Thread
I can't view the add or view blog page according to the tutorial - by El Forum - 02-11-2009, 11:21 AM



Theme © iAndrew 2016 - Forum software by © MyBB