0 Комментарии
0 Поделились
5Кб Просмотры
0 предпросмотр
Поиск
Знакомьтесь и заводите новых друзей
-
Войдите, чтобы отмечать, делиться и комментировать!
-
PHP while LoopThe while loop - Loops through a block of code as long as the specified condition is true. The PHP while Loop The while loop executes a block of code as long as the specified condition is true. ExampleGet your own PHP Server Print $i as long as $i is less than 6: $i = 1; while ($i < 6) { echo $i; $i++; } Try it Yourself »...0 Комментарии 0 Поделились 5Кб Просмотры 0 предпросмотр