codice:
 for ($ind = 1; $ind < 500; $ind++) {
if ($ind % 100 == 0) {
break;
}elseif ($ind % 25 == 0) {
continue;
}
echo "valore: $ind 
";
}
tipo questo non riesco a capire quello che realmente fa....a che serve