I have a php array $numbers = array(1,2,3,4,5,6,7,8,9)
$numbers = array(1,2,3,4,5,6,7,8,9)
if I am looping over it using a foreach foreach($numbers as $number)
foreach($numbers as $number)
and hav
continue;
Continue will tell it to skip the current iteration block, but continue on with the rest of the loop. Works in all scenerios (for, while, etc.)