Welcome Guest, Not a member yet? Register   Sign In
Need Basic MVC Example
#5

[eluser]John_Betong_002[/eluser]
Check your model...

Code:
class Helloworld_model extends CI_Model
{

public function __construct()
{
  parent::__construct();
}

function getData()
{
  $query=$this->db->get(‘data’);
  if($query->num_rows() > 0)
  {
     // no value returned ???
  }else{
    return $query->result(); // ZERO rows returned
  }
}//endfunc

}//endclass
 
 


Messages In This Thread
Need Basic MVC Example - by El Forum - 05-03-2011, 08:59 AM
Need Basic MVC Example - by El Forum - 05-03-2011, 01:18 PM
Need Basic MVC Example - by El Forum - 05-03-2011, 01:35 PM
Need Basic MVC Example - by El Forum - 05-03-2011, 03:36 PM
Need Basic MVC Example - by El Forum - 05-03-2011, 06:01 PM
Need Basic MVC Example - by El Forum - 05-04-2011, 09:17 AM
Need Basic MVC Example - by El Forum - 05-04-2011, 09:28 AM



Theme © iAndrew 2016 - Forum software by © MyBB