I have an array that contains 3 positions, each of which stores a long text, how can I store all three of the array positions in a single variable? for example:
Array ['Gol', 'Pallium', 'Celtic']
$ AllAsMarcas = // All positions in the array above.
Unfortunately, I can not because my code overwrites to the last position, so the previous positions are lost.
Thank you in advance!