When I implode my array I get a list that looks like this:
qwerty, QTPQ, FRQO
I need to add single quotes so it looks like:
\'
It can also be as short as this:
sprintf("'%s'", implode("', '", $array))