PHP สร้างพีระมิดด้วย(*)


ตัวอย่าง code

<!DOCTYPE html>
<html>
    <head>
        <title>สร้างพีระมิด</title>
        <meta charset="UTF-8">
    </head>
    <body>
        <form method="get">
            <p align="center"><input type="text" name="input"></p>
            <p align="center"><input type="submit"></p>
        </form>

        <?php
        if ($_GET) {
            $input = $_GET['input'];
            $theTop = array();
            $theTop[0] = "*";
            for ($i = 1; $i < $input; $i++) {
                    $theTop[$i] = "*".$theTop[$i-1]."*";
            }
            $printShow = implode("<br>", $theTop);
            echo "<h6 align=center>" . $printShow . "</h6>";
        }
        ?>
    </body>
</html>








1 ความคิดเห็น: