#####

#####

#####

#####

#####

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
    // X
    
    // XX

    // XXX
    
    // XXXX
    
    // XXXXX
    for ($i = 0; $i < 5; $i++)
    {
        for ($n = 0; $n < 5; $n++)
        {
            
            echo '#';
        }
        echo '<br>';
        echo '<br>';
    }
    


        
    /* outputs in this format:
    
    



    */
    
?>

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

</body>
</html>