I have the following simple implode code. How can I sctruture this so that I have %ARRAY% ???
$services=implode("%",$features);
You mean % surrounding the array contents?
$services = "%".implode(" ",$features)."%";
That was easy. Thanks....thats what I wanted.