You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
151 B
PHP

<?php
define('NUM', 3);
for($i=1 ; $i<=10 ; $i++)
{
echo $i*NUM;
echo '<br>';
}
?>
/*
3
6
9
12
15
18
21
24
27
30