I have a username list from which I am trying to retrieve information.
$users = 'tito,ann,myriam';
and the query that I am trying which does not work
SELECT * FROM user WHERE username IN('" . $users . "')
How can I retrieve info in that case?
Thank you.