Welcome Guest, Not a member yet? Register   Sign In
Models: Query returning one result
#3

[eluser]Noah David[/eluser]
Code:
function getMin($feedID)
{
    $this->db->select('MIN(id) AS id', FALSE);
    $this->db->where('feedID', $feedID);
    $query = $this->db->get('podcastUpdates');
    $row = $query->row();

    return $row->id;
}
    // Call function
    $minID = getMin(2);
    // Echo results, $row->id from function
    echo $minID;

Cheers.


Messages In This Thread
Models: Query returning one result - by El Forum - 03-03-2008, 10:21 AM
Models: Query returning one result - by El Forum - 03-03-2008, 10:56 AM
Models: Query returning one result - by El Forum - 03-03-2008, 11:26 AM
Models: Query returning one result - by El Forum - 03-03-2008, 01:11 PM



Theme © iAndrew 2016 - Forum software by © MyBB