order_by function is used to order the records from a table in CodeIgniter.
1 2 3 4 5 |
// Getting random rows from database in CodeIgniter $this->db->select('*'); $this->db->from('table_name'); $this->db->order_by("column_name", "random"); $result = $this->db->get()->result(); |