autocomplete

autocomplete

 I am having problems with autocomplete. All the suggestions are coming out as one line. Eg ANOTHERTESTTEST instead of ANOTHER TEST the Test underneath.


This is in company.php to get the selection



  1. if (trim($Msg) == "") {       
  2.             $term = StrippedChars($_GET['term']);
  3.             $sqlstring = "SELECT * FROM companies where name like '%" . $term . "%'";                                       
  4.             if (!($result = @ mysqli_query($connection, $sqlstring))) {
  5.                 $Msg = "An error has occured when selecting the records from the Database";
  6.             }
  7.             if (empty($Msg)) {   
  8.                 if ($result->num_rows > 0){
  9.                     while ($row = mysqli_fetch_array($result)) {
  10.                         $name = StrippedChars(Substr(trim($row['name']),0,255));   
  11.                         $results['data'] .= $name;
  12.                     }
  13.                 }                               
  14.             }
  15.         }
  16.         if (trim($Msg) == "") {   
  17.             echo json_encode($results);           
  18.         }
  19.         else {
  20.             $results['data'] = $Msg;
  21.             echo json_encode($results);
  22.         }

This is my autocomplete

  1.  $("#company_name").autocomplete({
  2.                 source: "company.php",
  3.                 MinLength: 1,               
  4.             });   



Thanks