1$this->db->order_by('title', 'DESC');
2// Produces: ORDER BY `title` DESC
3
1$this->db->order_by('RegisteredUserID','ASC')
2// Produces: ORDER BY `RegisteredUserID` ASC
3
4$this->db->order_by('RegisteredUserID','DESC')
5// Produces: ORDER BY `RegisteredUserID` DESC