I have an array
$total = array("0","1","2","3","4","5","6","7");
or something similiar, and depending on various elements, it grows larger or smaller, etc
What I need to be able to do is display every second item in the array
i.e., using the array above, I would love to be able to output
1,3,5,7
However because the array can grow exponentially I cannot do it manually
Does anyone have any ideas - been googling with no joy