custom filtering in server side

custom filtering in server side

warroyowarroyo Posts: 2Questions: 0Answers: 0
edited March 2012 in General
Hi I would like to implement negative filtering in the server side. I have written some code and cant seem to figure out a reason it isn't working... i want to be able to type !foo and return all but foo.

[code]

if ( $_GET['sSearch'] != "" )
{

$aWords = preg_split('/\s+/', $_GET['sSearch']);
$sWhere = "WHERE (";

for ( $j=0 ; $j
This discussion has been closed.