" Life is not a problem to be solved but a reality to be experienced! "
© Copyright 2013 - 2025 KUDO.TIPS - All rights reserved.
<?php
$i = 1;
while($i <= 20) {
if($i % 2 == 0){
echo $i.",";
}
$i++;
}
?>