สร้างตารางสูตรคูณด้วย PHP



ตัวอย่าง code

<!DOCTYPE html>
<html>
    <head>
        <title>ตารางสูตรคูณ</title>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <link rel="stylesheet" href="w3-css.css">
    </head>
    <body class="w3-container">
        <table class="w3-table w3-striped w3-bordered w3-card-4">
            <h3 class="w3-center">ตารางสูตรคูณ</h3>
            <?php
            for ($i = 1; $i <= 12; $i++) {
                echo '<tr>';
                for ($j = 1; $j <= 25; $j++) {
                    echo "<td>" . ($i * $j) . "</td>";
                }
                echo '</tr>';
            }
            ?>
        </table>
    </body>
</html>




ไม่มีความคิดเห็น:

แสดงความคิดเห็น