05-22-2016, 09:45 PM
I created a test to see if the $db->get is losing stuff for me. I see what you're talking about. I did...
and I get the results for user 2 twice. It must be how it's storing it in memory. Let me check on this.
Code:
$user1 = $db->get('users',array('id','=',1));
Code:
$user2 = $db->get('users',array('id','=',2));
Code:
dump($user1);
Code:
dump($user2);