Welcome Guest, Not a member yet? Register   Sign In
Data from database not showing up
#2

[eluser]stratton[/eluser]
GamingFusion,

Try the modification below to your Model's method:

Code:
//getShows Function
function getShows()
{
    //Get Shows Data
    $query = $this->db->get('shows');
    return $query->result();    
}

You also didn't post your entire controller so I'm going to assume that your Controller loads the model 'database' in the constructor? If not, make sure you include the following in your constructor; with the correct name of your model of course.

Code:
$this->load->model('Model_name');

Hope this helps!


Messages In This Thread
Data from database not showing up - by El Forum - 10-23-2009, 08:55 PM
Data from database not showing up - by El Forum - 10-23-2009, 10:30 PM
Data from database not showing up - by El Forum - 10-23-2009, 10:48 PM
Data from database not showing up - by El Forum - 10-24-2009, 09:51 PM



Theme © iAndrew 2016 - Forum software by © MyBB