Hi, I am using codeigniter and I am very new to this. I am making a simple program that will display data from a database. but I have errors! this is my code
User.php Controller File
class User extends CI_Controller{
public function show(){
$result= $this->user_model->get_users();
foreach($result as $object)
{
echo $object->id;
}
}
}
?>
User_model.php Model File
class User_model extends CI_Model {
public function get_users(){
$fetch= $this->db->get('User');
return $fetch->result();
}
}
?>
source
share