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:
\'
Similar to what Rizier123 said, PHP's implode method takes two arguments; the "glue" string and the "pieces" array.
so,
$str = implode(", ", $arr);
gives you the elements separated by a comma and a space, so
$str = implode("', '", $arr);
gives you the elements separated by ', '
.
From there all you need to do is concatenate your list with single quotes on either end.