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?
#2

[eluser]InsiteFX[/eluser]
Try this, also make sure that you saved your model with all lowercase name!
You should also read the CodeIgniter User Guide - General Style and Syntax.
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');
        }
   }

InsiteFX
#3

[eluser]lucasvm[/eluser]
im getting the same error...

i dont know why, the name is the same as the function...
#4

[eluser]TWP Marketing[/eluser]
@InsiteFX The model name needs to be Capitalized in almost all usage. It's the file name that is lowercase.

@lucasvm. Your controller function looks ok. As Insitefx said, check the filename itself, it should be lower case.

Code:
...
function muestra($id){
       $this->load->model('Articulos_model'); // <-- this is correct

       //pido al modelo el artículo que se desea ver
       $arrayArticulos = $this->Articulos_model->dame_articulos($id); // <-- this is correct
       $numero_posts = $this->Articulos_model->dame_nro_posts(); // <-- this is correct
       $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');
        }
   }
...
#5

[eluser]lucasvm[/eluser]
Thank you, the file name calls articulos_model.php located in models folder.

I dont know what to do Sad
#6

[eluser]InsiteFX[/eluser]
@TWP
Wrong! If you read the code in the loader of the model you will see that it uppercases the model name.
Code:
$model = strtolower($model);

require_once($mod_path.'models/'.$path.$model.'.php');
$model = ucfirst($model);

InsiteFX
#7

[eluser]TWP Marketing[/eluser]
@InsiteFX, I stand corrected. It seems the User Guide is also incorrect, or at least irrelevant, since the loader will force the capitalization of model names if the coder does not. I have learned something, thanks.




Theme © iAndrew 2016 - Forum software by © MyBB