1234567
2468101214
36912151821
481216202428
5101520253035
6121824303642
7142128354249

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 == 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>