-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path28.php
33 lines (31 loc) · 971 Bytes
/
28.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<?php
/**
* Created by PhpStorm.
* User: panda
* Date: 24.03.19
* Time: 16:02
*/
echo "<p>28. Вывести таблицу умножения с помощью двух циклов for.</p> \n";
?>
<table class="table table-bordered">
<caption>Таблица умножения</caption>
<tr>
<th class="text-right"> </th>
<th class="text-right">2</th>
<th class="text-right">3</th>
<th class="text-right">4</th>
<th class="text-right">5</th>
<th class="text-right">6</th>
<th class="text-right">7</th>
<th class="text-right">8</th>
<th class="text-right">9</th>
</tr>
<?php for ($i = 2; $i <= 9; $i++) : ?>
<tr>
<?= "<th class=\"text-right\">{$i}</th>" ?>
<?php for ($j = 2; $j <= 9; $j++) : ?>
<?= '<td class="text-right">' . $i * $j . '</td>' ?>
<?php endfor; ?>
</tr>
<?php endfor; ?>
</table>