Welcome Guest, Not a member yet? Register   Sign In
Call to undefined method my_model:dame_articulos()
#1

[eluser]lucasvm[/eluser]
Hello

Im getting this error when i try to acces to the article page on my website, im doing this:

Code:
function muestra($id){
       $this->load->model('Articulos_model');

       //pido al modelo el artículo que se desea ver
       $arrayArticulos = $this->Articulos_model->dame_articulos($id);
       $numero_posts = $this->Articulos_model->dame_nro_posts();
       $datos_articulos = array('articulos' => $arrayArticulos,
                                'numero_de_posts' => $numero_posts);
       if (!$arrayArticulos){
                    show_404();
                }else
                    {
        $this->load->helper('url');
        $this->load->view('header');
        $this->load->view('articulos', $datos_articulos);
        $this->load->view('footer');
        }
   }

So the model articulos_model dooes exists, also the function dame_articulo existis and im doing this in articulos_model:

Code:
function dame_articulos($id){
            $sql = "myquery
                WHERE id =  '$id'";
        $query = $this->db->query($sql);
        $fav = $query->result_array();

        foreach($query->result() AS $row):
            $rows = $row;
            return $rows;
        endforeach;
        }

Does anybody knows why im getting this error? and how can i fix it?


Messages In This Thread
Call to undefined method my_model:dame_articulos() - by El Forum - 05-01-2011, 03:49 PM
Call to undefined method my_model:dame_articulos() - by El Forum - 05-01-2011, 04:58 PM
Call to undefined method my_model:dame_articulos() - by El Forum - 05-01-2011, 05:28 PM
Call to undefined method my_model:dame_articulos() - by El Forum - 05-01-2011, 05:36 PM
Call to undefined method my_model:dame_articulos() - by El Forum - 05-01-2011, 05:58 PM
Call to undefined method my_model:dame_articulos() - by El Forum - 05-01-2011, 09:39 PM
Call to undefined method my_model:dame_articulos() - by El Forum - 05-02-2011, 10:10 AM



Theme © iAndrew 2016 - Forum software by © MyBB