Welcome Guest, Not a member yet? Register   Sign In
Need help with writing a query!!!
#3

[eluser]heylarson[/eluser]
I currently have:

Code:
//get the details for a particular event based off the event id
function GetEventView($id)
{
    $this->db->select('id')->from('events')->order_by('start_date', 'desc');
    $query = $this->db->get();
    
    // $query->result() should contain the array of event id's
    // the id of the event that the user is currently viewing
    // is passed as a parameter. I need to somehow capture the
    // event id of the event that occurs next in time.
}


Messages In This Thread
Need help with writing a query!!! - by El Forum - 08-24-2010, 01:02 PM
Need help with writing a query!!! - by El Forum - 08-24-2010, 01:42 PM
Need help with writing a query!!! - by El Forum - 08-24-2010, 02:09 PM
Need help with writing a query!!! - by El Forum - 08-24-2010, 02:40 PM
Need help with writing a query!!! - by El Forum - 08-24-2010, 03:40 PM
Need help with writing a query!!! - by El Forum - 08-24-2010, 06:22 PM



Theme © iAndrew 2016 - Forum software by © MyBB