I am unable to interpret this ORM query from the Kohana 3 ORM framework. Please help me in understanding this:
$member_type_id=ORM::factory("member")->where('id',$videos[$count]->member_id)->find();
I am unable to interpret this ORM query from the Kohana 3 ORM framework. Please help me in understanding this:
$member_type_id=ORM::factory("member")->where('id',$videos[$count]->member_id)->find();
SELECT * FROM member WHERE id = <$videos[$count]->member_id>
The query will return at most one result.