Welcome Guest, Not a member yet? Register   Sign In
Passing object to views
#3

[eluser]xwero[/eluser]
[quote author="rtpub" date="1205745297"]
Code:
...
function get_record() {
   $cond = ...  // some selection criteria
   $query = $this->db->get_where('mytable', $cond);
   return $query;
}
[/quote]
A hint : use as little variables as possible because they use memory
Code:
...
function get_record() {
   $cond = ...  // some selection criteria
   return $this->db->get_where('mytable', $cond);
}


Messages In This Thread
Passing object to views - by El Forum - 03-16-2008, 10:14 PM
Passing object to views - by El Forum - 03-17-2008, 01:05 AM
Passing object to views - by El Forum - 03-17-2008, 01:25 AM



Theme © iAndrew 2016 - Forum software by © MyBB