The process of sorting results in a specific order in CodeIgniter's Query Builder is achieved using the ________ method.

  • arrange()
  • order()
  • order_by()
  • sort()
The correct method for sorting results in a specific order in CodeIgniter's Query Builder is the order_by() method. It allows you to specify the column and the order (ascending or descending) for sorting.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *