Skip to content
Advertisement

How to use ‘WHERE’ clause using ssp.class.php DataTables

Okay so i’m trying to display information from my database using jQuery DataTable (DataTables.net). I can get it to work fine displaying the entire table ‘notes’ but I would like to just display notes that have not been read. So I need to include a WHERE clause somehow but i’m unclear on the best way to go about this.

Here is how I currently display the whole table:

I would need the equivalent of SELECT * FROM Notes WHERE Status ='Unread'

Advertisement

Answer

You should change DataTables default functions to do this!

use this ssp.class.php customized class

Link

Use it like following example:

If you set $where parameter, Custom class will add where clause to select statement!

Update :

DataTables in 2015 add complex method

The new built-in method can set where clause in query!

User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement