With the following "LIKE" iLIKE condition in my WHERE clause, I only get the exact match. ..... . ' LIKE '. $db->quote($db->escape($artist)), 'AND')...... What i want is when $artist
. ' LIKE '. $db->quote($db->escape($artist)), 'AND') . When $artist is e.g. Beyoncé, for example Beyoncé, it only returns a value when $artist$artist is exactly "Beyoncé"Beyoncé.
I want it to return a value as well when the database value is "Beyonce"Beyonce.
I found solutions where there is no variabelvariable (something with '%'%), but I can't get this to work.