auto search suggest with three text fields and displaying three columns paralal in the display panel
I Need Search line where i can search from three dissfrenc text boxes and displaying three columns link in this image. i am using php, jquery JavaScript and ajax mysql to make th开发者_开发百科is
bt i is working with only one text (1st box) box simultenously.
plz help me to do this.
for example...
$sql = "select * from Firmname";
if($materiaux != '')
$sql.= " where Firmnamelike '".mysql_real_escape_string($Firmname)."%'";
$sql .= " order by FirmnameASC ";
$result = $this->sqlQueryArray($sql);
return $result;
//In ajax,
if(trim($Firmname) != '')
$final_result = ucfirst(($Firmname))."|".$Firmname_id."|".$PersonName."|".$MobileNO;
$final_result .= "\n";
echo $final_result;
精彩评论