Server side Multiple word search
Server side Multiple word search
Good day
I am a newbie and I don't know how to use php sql queries.
I have figured out how to fetch data from a server, but i can't make it search multiple words with space.
whenever i search one word it works fine but if I write another word table is empty.
but if i use in a regular table without server side it search for a lot of space separated words. My datatable is very big. So i need a multiple words search for server side.
I have tried
[code]
function fnFilterNormal ()
{
var jqInputs = $('#filter_norm input');
oTable.fnFilter( jqInputs[0].value);
}
$('#filter_norm input').keyup( fnFilterNormal );
[/code]
but it also uses one word search
Could you just give some link or examples to read.
Great thank for your quick replies.
I am a newbie and I don't know how to use php sql queries.
I have figured out how to fetch data from a server, but i can't make it search multiple words with space.
whenever i search one word it works fine but if I write another word table is empty.
but if i use in a regular table without server side it search for a lot of space separated words. My datatable is very big. So i need a multiple words search for server side.
I have tried
[code]
function fnFilterNormal ()
{
var jqInputs = $('#filter_norm input');
oTable.fnFilter( jqInputs[0].value);
}
$('#filter_norm input').keyup( fnFilterNormal );
[/code]
but it also uses one word search
Could you just give some link or examples to read.
Great thank for your quick replies.
This discussion has been closed.
Replies
Allan