Hello, I need to assign multiple array to a single variable, the value of all of them will be in sequence in that variable. Ex.:
$variavel = $array[0] . $array[1] . $array[2] . $array[3] . $array[4];
echo $variavel
This variable then uses it in an IF to make multiple comparisons, how can I do this without having to write infinite array assignments?