custom filtering in server side
custom filtering in server side
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
[code]
if ( $_GET['sSearch'] != "" )
{
$aWords = preg_split('/\s+/', $_GET['sSearch']);
$sWhere = "WHERE (";
for ( $j=0 ; $j
This discussion has been closed.