Position Where
Position Where
reru.academic1
Posts: 10Questions: 2Answers: 0
in DataTables 2
https://editor.datatables.net/examples/datatables/properties.html
options( function($db) {
return $db->select('sites', array('id', 'name', 'continent'))->fetchAll();
}
help me howto where id = '1'
Replies
->select()
takes an optional third parameter for thewhere
condition, which can be used for simple conditions such as this:Allan