Hi,
I'd like to know if it is possible to implode an array of imploded variables? The code is use is this:
$level2_sub_category = $sub_category[$i];
$save_sub_category[$i] = implode("</2>", $level2_sub_category);
$update_sub_category = implode("</field>", $save_sub_category);
The error message I get is "bad arguments to implode". That seems to me that it isn't possible, but I'm not sure (I might be doing something wrong of course).
If it's not possible, does anybody know how to work around this problem.
Greetings,
Paul van Asten
(by the way $level2_sub_category is of course also an array).