Showing posts with label Example code for Loops continue in php. Show all posts
Showing posts with label Example code for Loops continue in php. Show all posts

 Example code for Loops  continue in php

<html>
    <head>
        <title>Loops  continue</title>
    </head>
    <body>


    <?php
       
        for ($count=0; $count <= 10; $count++) {
            if ($count == 5) {
                continue;
            }
            echo $count . ", ";
        }
    ?>
    </body>
</html>
Subscribe to RSS Feed Follow me on Twitter!