How to make FUZZY search
If you want to want to make even some characthers searchable then use ==> WHERE id like ‘%$search%’, then your can search almost everything BUT it will open up all data inside the DB and it will be displaied when emoty search is performed. you can also use OR operator in MySQL to add some … Read more