Home
PHP
Chart
Class
Components
Cookie Session
Data Structure
Data Type
Date
Design Patterns
Development
DNS
Email
File Directory
Form
Functions
Graphics Image
HTML
Language Basics
Login Authentication
Math
MySQL Database
Network
Operator
PDF
Reflection
Statement
String
Utility Function
Web Services SOAP WSDL
XML
Menu
Do while loop : do while « Statement « PHP
PHP
Statement
do while
Do while loop
<?php $a = 1;
do
{ echo $a .
"<br>"
; $a++; }
while
($a > 10); ?>
Related examples in the same category
1.
Counting to 10 with do ... while
2.
Do-While Loop
3.
do while loop with counter
4.
do while with integer counter
5.
do...while loop is executed at least once
6.
Break in Nested Loops
7.
The do...while Statement