Answer by
hb77 (12)
If you want your array to be numericaaly indexed, then you can use array_values().
Syntax for this is 'array array_values(array $input)'. You can use array_values($input), this will return an array with numerical indexes (like 0,1,.. number of elements in the array).