View Single Post
  #7  
Old 06-15-2004, 07:53 AM
 
cyberlab cyberlab is offline
 

Advanced Member
  
Join Date: Jan 2004
Posts: 31
 

Default

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.
Reply With Quote