I have the following array:
array(3) {
[0]=>
string(22) "VALOR 1"
[1]=>
string(10) "VALOR 2"
[2]=>
string(14) "VALOR 3"
}
I need to show all values of this array but delete the first, which in this case is "VALUE 1". How to remove the first value from the array? Since the string can be anything.
I tried to use array_shift () but it ends up disappearing with my array and leaving only the first string.