1 | 2 | 3 | 4 | 5 | 6 | 7 |
2 | 4 | 6 | 8 | 10 | 12 | 14 |
3 | 6 | 9 | 12 | 15 | 18 | 21 |
4 | 8 | 12 | 16 | 20 | 24 | 28 |
5 | 10 | 15 | 20 | 25 | 30 | 35 |
6 | 12 | 18 | 24 | 30 | 36 | 42 |
7 | 14 | 21 | 28 | 35 | 42 | 49 |
Code:
<html>
<head>
<title>PHP TEST YAHHH</title>
<link rel="stylesheet" type="text/css" href="mystyle.css">
</head>
<body>
<div class="topbar">
<?php
include 'navbar.php';
?>
</div>
<table cellspacing ="4" cellpadding ="4" border="1">
<?php
//ex 8.4
//mult table
for ($i = 1; $i < 8; $i++)
{
if ($i % 2 == 0)
{
echo '<tr bgcolor=#FF7C67>';
}
else
{
echo '<tr bgcolor=#FF530D>';
}
for ($n = 1; $n < 8; $n++)
{
$mult = $n * $i;
echo '<td width="20px">';
echo $mult;
echo '</td>';
}
echo '</tr>';
}
//echo '<br>';
?>
</table>
<div class="codebox">
<h3>Code:</h3>
<?php
highlight_file("ex027.php");
?>
</div>
</body>
</html>