Here's an array:
$a = array("aa","bb","cc");
I'd like to return a STRING with all the elements of $a, BUT... I'd like each element from $a to be single quoted "'", and separated by ",". For instance..
return $str = "'aa','bb','cc'": NOTICE the single quotes AND the commas.
Anyone with a quick workaround or is a custom function in order here..
thanks