I am not to familiar with programming. This is what is my search code;
Code:
$ss = split(" ",$substring);
foreach($ss as $s)
// nfc - we add support for other fields to search
$con[] = "(".$sql_tbl[products].".product like '%".$s."%'"." OR ".
$sql_tbl[products].".productcode like '%".$s."%'"." OR ".
$sql_tbl[products].".param00 like '%".$s."%'"." OR ".
$sql_tbl[products].".param01 like '%".$s."%'"." OR ".
$sql_tbl[products].".param02 like '%".$s."%'"." OR ".
$sql_tbl[products].".descr like '%".$s."%'"." OR ".
$sql_tbl[products].".fulldescr like '%".$s."%'"." OR ".
$sql_tbl[products].".productid like '%".$s."%'".")";
//$substr .= "&substring=".urlencode($substring);
}
Nothing is happening .... I tried searching for two different items and nothing.