HTML
CSS
PHP
Deno
Examples
Do It Yourself
Blog
Type in your code below
Run
<?php $animals = ["cow", "dog", "goat", "cat", "horse", "mouse"]; for($i = 0; $i <= count($animals); $i++) { if( $animals[$i] == "goat"){ continue; } echo "$animals[$i] <br>"; } ?>