Welcome Guest, Not a member yet? Register   Sign In
Ordering DB results by date
#2

[eluser]Yash[/eluser]
[url="http://ellislab.com/codeigniter/user-guide/database/active_record.html#select"]USER GUIDE[/url]

$this->db->order_by();

Lets you set an ORDER BY clause. The first parameter contains the name of the column you would like to order by. The second parameter lets you set the direction of the result. Options are asc or desc, or random.
$this->db->order_by("title", "desc");

// Produces: ORDER BY title DESC


Messages In This Thread
Ordering DB results by date - by El Forum - 07-31-2008, 10:37 AM
Ordering DB results by date - by El Forum - 07-31-2008, 10:40 AM
Ordering DB results by date - by El Forum - 07-31-2008, 10:54 AM
Ordering DB results by date - by El Forum - 07-31-2008, 10:58 AM
Ordering DB results by date - by El Forum - 07-31-2008, 11:07 AM
Ordering DB results by date - by El Forum - 07-31-2008, 11:14 AM
Ordering DB results by date - by El Forum - 07-31-2008, 11:26 AM
Ordering DB results by date - by El Forum - 07-31-2008, 12:10 PM
Ordering DB results by date - by El Forum - 08-01-2008, 12:02 AM



Theme © iAndrew 2016 - Forum software by © MyBB