summaryrefslogtreecommitdiff
path: root/vendor/gregwar/captcha/demo/index.php
blob: e543883bb73f86a28e2f57bd9fa0f9b17a707ce4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!DOCTYPE html>
<body>
    <html>
        <meta charset="utf-8" />
    </html>
    <body>
        <h1>Captchas gallery</h1>
        <?php for ($x=0; $x<8; $x++) { ?>
            <?php for ($y=0; $y<5; $y++) { ?>
                <img src="output.php?n=<?php echo 5*$x+$y; ?>" />
            <?php } ?>
            <br />
        <?php } ?>
    </body>
</body>