Hi,
Lets say I have this $array containing 1 2 3 4 5 <--these are element values in the array
I want to have a variable that contains the elements of the array.
For example
$str to have '1, 2, 3, 4, 5'
In other words,
echo $str
will output 1, 2, 3, 4, 5 <--in this format displaying the elements of the array in a string variable.
Thanks in advance =)
lotsa luv