I've made a crud function where users register/log in to view their own contact list. The mysql database has tables of details such as name
, mobile
, email
, company
, title
etc. I want to implement a live search function where the user can type in something such as e.g. first name + title
or whatever random combination, and for the live search to be able to match the search field(s).
What is your recommendation in making something that fulfills the above?
Many thanks!