programming-examples/php/_Basics/Print Table of aby number Program in PHP.php

23 lines
151 B
PHP
Raw Normal View History

2019-11-15 12:59:38 +01:00
<?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