PHP continue Statement Last Updated : 25 Aug, 2022 Comments Improve Suggest changes Like Article Like Report The continue statement is used within a loop structure to skip the loop iteration and continue execution at the beginning of condition execution. It is mainly used to skip the current iteration and check for the next condition. The continue accepts an optional numeric value that tells how many loops you want to skip. Its default value is 1. Syntax: loop { // Statements ... continue; } Example 1: The following code shows a simple code with a continue statement. PHP <?php for ($num = 1; $num < 10; $num++) { if ($num % 2 == 0) { continue; } echo $num . " "; } ?> Output1 3 5 7 9 Example 2: The following code shows a continue 2 statement that will continue with the next iteration of the outer loop. PHP <?php $num = 4; while($num++ < 5) { echo "First Loop \n"; while(1) { echo "Second Loop \n"; continue 2; } echo "Outer value \n"; } ?> OutputFirst Loop Second Loop Reference: https://www.php.net/manual/en/control-structures.continue.php Create Quiz Comment V vkash8574 Follow 0 Improve V vkash8574 Follow 0 Improve Article Tags : Web Technologies PHP PHP-basics Explore BasicsPHP Syntax4 min readPHP Variables5 min readPHP | Functions6 min readPHP Loops4 min readArrayPHP Arrays5 min readPHP Associative Arrays4 min readMultidimensional arrays in PHP5 min readSorting Arrays in PHP4 min readOOPs & InterfacesPHP Classes2 min readPHP | Constructors and Destructors5 min readPHP Access Modifiers4 min readMultiple Inheritance in PHP4 min readMySQL DatabasePHP | MySQL Database Introduction4 min readPHP Database connection2 min readPHP | MySQL ( Creating Database )3 min readPHP | MySQL ( Creating Table )3 min readPHP AdvancePHP Superglobals6 min readPHP | Regular Expressions12 min readPHP Form Handling4 min readPHP File Handling4 min readPHP | Uploading File3 min readPHP Cookies9 min readPHP | Sessions7 min read Like