I have this right now:
$_words = "'".implode("','", $array_of_words)."'";
Which gives me a string like:
'word','word2','word3'
How can I modify that to get
"word","word2","word3"
Thanks
Just swap your quotes
$_words = '"'.implode('","', $array_of_words).'"';
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With