#####

####

###

##

#

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>

<?php

    
    
//ex 8.3
    
    // make this with TWO for loops
    // #####
    
    // ####

    // ###
    
    // ##
    
    // #
    
    
for ($i 0$i 5$i++)
    {
        for (
$n 5$n $i$n--)
        {
            echo 
'#';
        }
        echo 
'<br>';
        echo 
'<br>';
    }
    


        
    
/* outputs in this format:
    
    



    */
    
?>

<div class="codebox">
<h3>Code:</h3>
<?php
highlight_file
("ex026.php");
?>
</div>


</body>
</html>