Question asks itself ^
I've heard I can mimic this using http_build_query, but I'd rather use a function that's meant for this.
Thanks for replies
input example:
$assoc = array(
"fruit" => "banana",
"berry" => "blurberry",
"vegetable" => "lettice"
);
output wanted: (i get this with http_build_query)
string(46) "fruit=banana,berry=blurberry,vegetable=lettice"
output from reversal wanted is the same as input - that's my current problem