Server side regexp filtering for individual columns, please help!
Server side regexp filtering for individual columns, please help!
Hi all,
I have succesffuly managed to get regexp filtering working on the global search box with the following server side script:-
[code]
$sWhere = "";
if ( $_GET['sSearch'] != "" )
{
$aWords = preg_split('/\s+/', $_GET['sSearch']);
$sWhere = "WHERE (";
for ( $j=0 ; $j
I have succesffuly managed to get regexp filtering working on the global search box with the following server side script:-
[code]
$sWhere = "";
if ( $_GET['sSearch'] != "" )
{
$aWords = preg_split('/\s+/', $_GET['sSearch']);
$sWhere = "WHERE (";
for ( $j=0 ; $j
This discussion has been closed.