$myarray[0]="Hello";
$myarray[1]="World";
$imploded_myarray=implode(",", $myarray);
$imploded_myarray="Hello, World";
Is there a simple way to get the results coverted to "'Hello', 'World'";
For example, I wanted to implode the array first, and use it in the mysql query "in the set" test. And the field is type varchar(100). I would need "'Hello', 'Word'", instead of "Hello, World".
Thanks!