Cell (1,1)Cell (1,2)Cell (1,3)Cell (1,4)Cell (1,5)Cell (1,6)
Cell (2,1)Cell (2,2)Cell (2,3)Cell (2,4)Cell (2,5)Cell (2,6)
Cell (3,1)Cell (3,2)Cell (3,3)Cell (3,4)Cell (3,5)Cell (3,6)
Cell (4,1)Cell (4,2)Cell (4,3)Cell (4,4)Cell (4,5)Cell (4,6)
Cell (5,1)Cell (5,2)Cell (5,3)Cell (5,4)Cell (5,5)Cell (5,6)




END OF OUTPUT




Source Code of 5.php


<?php
echo "<html>\n";
echo 
"<body>\n";
echo 
"<table>\n";

//FOR Loops work exactly the same as we are used to
for ($x 0$x 5$x++) {                        // a loop to generate 5 rows
    
echo "<tr>";
    for (
$y=0$y ;$y++) {                    // a loop to generate 6 cells
        
echo "<td>"."Cell (".($x+1).",".($y+1).")</td>";    //EACH VALUE is "Cell (x,y)"
    
}
    echo 
"</tr>\n";
}
echo 
"</table>\n</body>\n</html>";
?>


<?php //WILL DISPLAY CODE OF THIS FILE ON THE WEBPAGE//
######################################################################
echo "<br/><br/><hr><hr>";
echo 
"<h2 style='text-align:center'>END OF OUTPUT</h2>\n";
echo 
"<hr><hr>";
echo 
"<h2><br>Source Code of ".basename((string)__FILE__) . "</h2><hr>";
show_source(__FILE__);
#######################################################################
?>