2
I have an array that contains 3 positions, each of them stores a long text, how can I do to store in a single variable all these 3 positions of the array. for example:
Array['Gol', 'Pallium', 'Celtic']
$All over = //All array positions above.
Unfortunately I can’t because my code overwrites until the last position, so the previous positions are lost.
Thanks in advance!
Tried as implode ? it will transform all array elements into a string.
– rray