I was wondering....is it possible to retrieve a value from a mysql database if the value of the WHERE statement is similar to the input text? Something like the similar_text() function but applied to the search condition.
Example:
<?php
$res = mysqli_query(*CONECTION*,"SELECT value FROM table WHERE condition=*is similar to x*");
?>
If this thing is possible please tell me how.