yes its like continue.. just only skipping the array loop
what i create is this !
if ($LastDate <= $date) {
$dateSwitch = 0;
} elseif ($xxDate >= $date) {
$dateSwitch = 1;
}
switch ($dateSwitch) {
case 0:
break;
case 1:
inserting into database .....
}