Welcome Guest, Not a member yet? Register   Sign In
Problem in generating query
#13

[eluser]-spy-[/eluser]
this is weird, i can now generate the query, and retrieve data from the database, i tried again to put my query inside the controller, it's now working.. but unfortunately i can't make it in the model...

Fatal error: Call to a member function result() on a non-object in D:\Program Files\xampp\htdocs\pupcomm\system\application\views\profile\history.php on line 44

here's my code in profile.php
Code:
<?php
class Profile extends Controller {

    function Profile()
    {
        parent::Controller();    
    }
    
    function history()
    {
        $this->load->model('Student');
        $data['query'] = $this->Student->view_list();
        //$data['query'] = $this->db->query("SELECT * FROM SAMPLE_RECORDLIST");
        $this->load->view('profile/history', $data);    
    }
}
?>


here's my code in student.php
Code:
<?php
class Student extends Model {

    function Student()
    {
        parent::Model();
    }
    
    function view_list()
    {
        $query = $this->db->get('sample_recordlist');
        return $query->result();
    }
}
?>

hope you can help me again...


Messages In This Thread
Problem in generating query - by El Forum - 12-14-2007, 09:53 AM
Problem in generating query - by El Forum - 12-14-2007, 09:54 AM
Problem in generating query - by El Forum - 12-14-2007, 09:59 AM
Problem in generating query - by El Forum - 12-14-2007, 10:01 AM
Problem in generating query - by El Forum - 12-14-2007, 10:07 AM
Problem in generating query - by El Forum - 12-14-2007, 11:23 AM
Problem in generating query - by El Forum - 12-14-2007, 11:31 AM
Problem in generating query - by El Forum - 12-14-2007, 04:10 PM
Problem in generating query - by El Forum - 12-14-2007, 04:36 PM
Problem in generating query - by El Forum - 12-14-2007, 04:54 PM
Problem in generating query - by El Forum - 12-14-2007, 11:53 PM
Problem in generating query - by El Forum - 12-15-2007, 09:18 AM
Problem in generating query - by El Forum - 12-17-2007, 12:32 AM
Problem in generating query - by El Forum - 12-17-2007, 12:57 AM
Problem in generating query - by El Forum - 12-17-2007, 03:31 AM
Problem in generating query - by El Forum - 12-17-2007, 03:55 AM
Problem in generating query - by El Forum - 12-17-2007, 04:28 AM
Problem in generating query - by El Forum - 12-17-2007, 04:32 AM



Theme © iAndrew 2016 - Forum software by © MyBB