Welcome Guest, Not a member yet? Register   Sign In
First project: Model problem
#2

[eluser]Sarfaraz Momin[/eluser]
The model code is incorrect. You are closing the class before the getNumberOfArtists method. Please check the code below.

Code:
class Artists extends Model {
    function Artists() {
        parent::Model();
    }

   //Get nr of artists in atg
   function getNumberOfArtists() {
       $Q = $this->db->query('SELECT * FROM atg_bands');
       $nr_artists = $Q->num_rows();
       return $nr_artists;
   }
}

Have a good day !!!


Messages In This Thread
First project: Model problem - by El Forum - 01-17-2009, 02:04 PM
First project: Model problem - by El Forum - 01-17-2009, 03:03 PM
First project: Model problem - by El Forum - 01-17-2009, 03:11 PM



Theme © iAndrew 2016 - Forum software by © MyBB