Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,888 questions

51,815 answers

573 users

How to create a chess board in PHP and HTML

1 Answer

0 votes
<!DOCTYPE html>
<html> 
    <body> 
        <h1>Chess Board</h1>
        <table width="320px" cellspacing="0px" cellpadding="0px" border="1px">
            <?php
            for ($row = 1; $row <= 8; $row++) {
                echo "<tr>";
                for ($col = 1; $col <= 8; $col++) {
                    $sum = $row + $col;
                    if ($sum % 2 == 0) {
                        echo "<td height=40px width=40px bgcolor=#FFFFFF></td>";
                    } else {
                        echo "<td height=40px width=40px bgcolor=#000000></td>";
                    }
                }
                echo "</tr>";
            }
            ?>
        </table>
    </body>
</html>

 



answered Mar 8, 2019 by avibootz

Related questions

1 answer 159 views
1 answer 197 views
1 answer 222 views
1 answer 207 views
...