How to Search value from input by mysqli in database

前端 未结 3 1413
野性不改
野性不改 2020-12-22 15:39

I want to show my database value when use type first character of the value. Let me describe it with my site I have a website with homepage input where user type input as t

3条回答
  •  时光取名叫无心
    2020-12-22 16:13

    I didn't really get your question but from what I got, you can use this query:

    SELECT * FROM table_name WHERE column LIKE '%value_here%'

提交回复
热议问题