Quantcast
Channel: Editor — DataTables forums
Viewing all articles
Browse latest Browse all 3740

How can I set the sort order of the SQL query?

$
0
0

I have the following in my server-side php and I would like to sort it by id and not month...

$out=Editor::inst( $db, 'lk_months', 'id')
->field(
Field::inst( 'id' ),
Field::inst( 'month' )
)
->process($_POST)
->json();


Viewing all articles
Browse latest Browse all 3740