How do I incorporate "WHERE" statements?
How do I incorporate "WHERE" statements?
Hello, I am new to DataTables (awesome tool so far) and I was wondering what the equivalent to "SELECT * FROM browsers WHERE grade = A"
I am currently looking at the example: htmltable.php
Do I have to do anything in browsers_array.php?
Thank you for your time :)
I am currently looking at the example: htmltable.php
Do I have to do anything in browsers_array.php?
Thank you for your time :)
This discussion has been closed.
Replies
[code]
$editor->where( 'country', 'USA' );
[/code]
For example.
Allan