Chess Board

48


 <html>
 <head>
 <title>Chess Board</title>
 </head>
 <body>
 <center>
 <h3>Chess Board</h3>
 <table width="270px" cellspacing="0" border="1">
 <?php
 for($row = 0; $row < 8; $row++){
 echo "<tr>";
 for($col = 0; $col < 8; $col++){
  if(($row + $col) % 2 == 0){
    echo "<td height='30px' width='30px' bgcolor='#FFFFFF'></td>";
    }
 else {
    echo "<td height='30px' width='30px' bgcolor='#000000'></td>";
    }
 }
 echo "</tr>";
 }
 ?>
</table> 
</center>
</body>
</html>