Welcome Guest, Not a member yet? Register   Sign In
Error when show data from database ?
#3

[eluser]mddd[/eluser]
In your model in get_data you are returning $this->db->get();
Then in your controller you are using that result ($artikels) to do 'foreach $artikels as $artikel'.
But the result of get() is not a list of items. It is a database query result object. You need to get the result items from it using result() of result_array().

Change the last line of get_data():
Code:
// old:
return $this->db->get();
// new:
return $this->db->get()->result_array();


Messages In This Thread
Error when show data from database ? - by El Forum - 07-30-2010, 03:57 AM
Error when show data from database ? - by El Forum - 07-30-2010, 04:11 AM
Error when show data from database ? - by El Forum - 07-30-2010, 04:13 AM



Theme © iAndrew 2016 - Forum software by © MyBB