Welcome Guest, Not a member yet? Register   Sign In
codeigniter 2.0 problem with model
#1

[eluser]kris10[/eluser]
I got an error on my model

Fatal error: Call to undefined method CI_Model::Model() in /home/cb/public_html/1/radiomotion/application/models/media_model.php on line 8

Code:
<?php
class Media_model extends CI_Model{

function Media_model()
    {
        // Call the Model constructor
        parent::Model();
    }

/*  =========== Ajout ========================= */
    function addMedia(){

              $data = array('med_titre' => $_POST['med_titre']
                    );
    
      $this->db->insert('media',$data);
    
    }
    
    
}


?>

line 8 is parent::Model();

What did I forget ?


Messages In This Thread
codeigniter 2.0 problem with model - by El Forum - 10-08-2010, 02:25 AM
codeigniter 2.0 problem with model - by El Forum - 10-08-2010, 02:40 AM
codeigniter 2.0 problem with model - by El Forum - 10-08-2010, 03:28 AM
codeigniter 2.0 problem with model - by El Forum - 08-09-2011, 01:07 PM



Theme © iAndrew 2016 - Forum software by © MyBB