Here is my line of code:
$row_number = array_unique($numrows);
print_r($row);
the output:
Array ([0]=>1 [5] => 3 [6] => 6 [7]=> 9)
How do I re-index the array to:
Array ([0] => 1 [1] => 5 [2] => 6 [3] => 9)
Is there a PhP function that does that? If so, what should be the line to do it?