I have an array
Array ( [1] => Vice President [3] => Secretary [5] => Treasurer )
I want to change it to
Array ( [0] => Vice President [1] => Secretary [2] => Treasurer )
I tried php for loop function
$ub_new_arr_sort = array(); for($i3 = 0; $i3 < count($ub_new_arr); $i3++){ $ub_new_arr_sort[] = $ub_new_arr[$i3]; }
but it doesn't seem to work at all, any idea?
Thanks for the promotion.
source share