i am new to php, html and js.I am trying to make a website using php, html and js and what i want to is search. actually i have a database which is storing name of videos and their URL and i want to match entered text with name of video in db. for example if someone enters arith in search text box all names having arith word in them should be searched like arithmetic etc. how can i do this??
Share
If you’re using a MySQL database as I assume you are, you might start with looking at MySQL fulltext search. I started out with examples from the comments and developed my fulltext searches from there.