No what I said was that the implode itself didnt work.
It didnt implode the comma as it was supposed to.
As of now I got
PHP Code:
foreach ($array as $v1)
{
foreach ($v1 as $v2)
{
echo "$v2, ";
}
}
And yes there needs to be 2 foreach cos the array is
Code:
Array (
[0] => array (
[username] => "Username 1"
)
[1] => array (
[username] => "username 2"
)
)
And the array will change number of values based on how many usernames there are.
lol dont ask me how the arrays got stored so silly, I took vB3's own query and modded it to my own need for it.