JQuery Autocomplete from Database

后端 未结 3 1205
余生分开走
余生分开走 2021-01-01 08:25

I need to to do autocomplete suggestion for my website and the data should be retrieved from database. I want to use JQuery autocomplete. here is my code but it doesn\'t wor

3条回答
  •  天涯浪人
    2021-01-01 08:53

     $row['fname'],
       'label'=> $row['fname']
      );
     }
     echo json_encode($json);
    ?>
    

    All I changed was the $_REQUEST["q"] to $_REQUEST["term"].

提交回复
热议问题